Skip to content

Fixed an extra padding character in the negative integer formatting#2443

Open
F1F88 wants to merge 4 commits intoalliedmodders:masterfrom
F1F88:fix_pads
Open

Fixed an extra padding character in the negative integer formatting#2443
F1F88 wants to merge 4 commits intoalliedmodders:masterfrom
F1F88:fix_pads

Conversation

@F1F88
Copy link
Copy Markdown
Contributor

@F1F88 F1F88 commented Apr 20, 2026

This was introduced by #2329. I apologize for not doing enough testing; I believe the test cases are comprehensive enough this time.

Click to expand test cases
#include <sourcemod>
#include <testing>

public void OnPluginStart()
{
    SetTestContext("Test Integer");

    // Base
    AssertFmtEq("'%d'",           0,              "'0'");
    AssertFmtEq("'%d'",           128,            "'128'");
    AssertFmtEq("'%d'",           1234567,        "'1234567'");
    AssertFmtEq("'%d'",           2147483647,     "'2147483647'");
    AssertFmtEq("'%d'",           -128,           "'-128'");
    AssertFmtEq("'%d'",           -1234567,       "'-1234567'");
    AssertFmtEq("'%d'",           -2147483648,    "'-2147483648'");

    AssertFmtEq("'%i'",           0,              "'0'");
    AssertFmtEq("'%i'",           128,            "'128'");
    AssertFmtEq("'%i'",           1234567,        "'1234567'");
    AssertFmtEq("'%i'",           2147483647,     "'2147483647'");
    AssertFmtEq("'%i'",           -128,           "'-128'");
    AssertFmtEq("'%i'",           -1234567,       "'-1234567'");
    AssertFmtEq("'%i'",           -2147483648,    "'-2147483648'");

    // Precision
    AssertFmtEq("'%.0d'",         1234567,        "'1234567'");
    AssertFmtEq("'%.7d'",         1234567,        "'1234567'");
    AssertFmtEq("'%.9d'",         1234567,        "'1234567'");
    AssertFmtEq("'%.20d'",        1234567,        "'1234567'");
    AssertFmtEq("'%.0d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%.8d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%.9d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%.20d'",        -1234567,       "'-1234567'");

    // Width
    AssertFmtEq("'%0d'",          1234567,        "'1234567'");
    AssertFmtEq("'%7d'",          1234567,        "'1234567'");
    AssertFmtEq("'%9d'",          1234567,        "'  1234567'");
    AssertFmtEq("'%20d'",         1234567,        "'             1234567'");
    AssertFmtEq("'%0d'",          -1234567,       "'-1234567'");
    AssertFmtEq("'%8d'",          -1234567,       "'-1234567'");
    AssertFmtEq("'%9d'",          -1234567,       "' -1234567'");
    AssertFmtEq("'%20d'",         -1234567,       "'            -1234567'");

    // Width & Precision
    AssertFmtEq("'%0.7d'",        1234567,        "'1234567'");
    AssertFmtEq("'%0.9d'",        1234567,        "'1234567'");
    AssertFmtEq("'%7.7d'",        1234567,        "'1234567'");
    AssertFmtEq("'%7.9d'",        1234567,        "'1234567'");
    AssertFmtEq("'%9.7d'",        1234567,        "'  1234567'");
    AssertFmtEq("'%9.9d'",        1234567,        "'  1234567'");
    AssertFmtEq("'%20.7d'",       1234567,        "'             1234567'");
    AssertFmtEq("'%20.9d'",       1234567,        "'             1234567'");
    AssertFmtEq("'%0.8d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%0.9d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%8.8d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%8.9d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%9.8d'",        -1234567,       "' -1234567'");
    AssertFmtEq("'%9.9d'",        -1234567,       "' -1234567'");
    AssertFmtEq("'%20.8d'",       -1234567,       "'            -1234567'");
    AssertFmtEq("'%20.9d'",       -1234567,       "'            -1234567'");

    // Flags
    AssertFmtEq("'%0d'",          1234567,        "'1234567'");
    AssertFmtEq("'%-d'",          1234567,        "'1234567'");
    AssertFmtEq("'%0-d'",         1234567,        "'1234567'");
    AssertFmtEq("'%0d'",          -1234567,       "'-1234567'");
    AssertFmtEq("'%-d'",          -1234567,       "'-1234567'");
    AssertFmtEq("'%0-d'",         -1234567,       "'-1234567'");

    // Flags & Precision
    AssertFmtEq("'%0.d'",         1234567,        "'1234567'");
    AssertFmtEq("'%0.0d'",        1234567,        "'1234567'");
    AssertFmtEq("'%0.7d'",        1234567,        "'1234567'");
    AssertFmtEq("'%0.9d'",        1234567,        "'1234567'");
    AssertFmtEq("'%0.20d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-.d'",         1234567,        "'1234567'");
    AssertFmtEq("'%-.0d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-.7d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-.9d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-.20d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-0.0d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.7d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.9d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.20d'",      1234567,        "'1234567'");
    AssertFmtEq("'%0.d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%0.0d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%0.8d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%0.9d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%0.20d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-.d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%-.0d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-.8d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-.9d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-.20d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.0d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.8d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.9d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.20d'",      -1234567,       "'-1234567'");

    // Flags & Width
    AssertFmtEq("'%00d'",         1234567,        "'1234567'");
    AssertFmtEq("'%07d'",         1234567,        "'1234567'");
    AssertFmtEq("'%09d'",         1234567,        "'001234567'");
    AssertFmtEq("'%020d'",        1234567,        "'00000000000001234567'");
    AssertFmtEq("'%-0d'",         1234567,        "'1234567'");
    AssertFmtEq("'%-7d'",         1234567,        "'1234567'");
    AssertFmtEq("'%-9d'",         1234567,        "'1234567  '");
    AssertFmtEq("'%-20d'",        1234567,        "'1234567             '");
    AssertFmtEq("'%-00d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-07d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-09d'",        1234567,        "'123456700'");
    AssertFmtEq("'%-020d'",       1234567,        "'12345670000000000000'");
    AssertFmtEq("'%00d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%08d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%09d'",         -1234567,       "'-01234567'");
    AssertFmtEq("'%020d'",        -1234567,       "'-0000000000001234567'");
    AssertFmtEq("'%-0d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%-8d'",         -1234567,       "'-1234567'");
    AssertFmtEq("'%-9d'",         -1234567,       "'-1234567 '");
    AssertFmtEq("'%-20d'",        -1234567,       "'-1234567            '");
    AssertFmtEq("'%-00d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-08d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-09d'",        -1234567,       "'-12345670'");
    AssertFmtEq("'%-020d'",       -1234567,       "'-1234567000000000000'");

    // Flags & Precision & Width
    AssertFmtEq("'%00.d'",        1234567,        "'1234567'");
    AssertFmtEq("'%00.0d'",       1234567,        "'1234567'");
    AssertFmtEq("'%00.7d'",       1234567,        "'1234567'");
    AssertFmtEq("'%00.9d'",       1234567,        "'1234567'");
    AssertFmtEq("'%00.20d'",      1234567,        "'1234567'");
    AssertFmtEq("'%07.d'",        1234567,        "'1234567'");
    AssertFmtEq("'%07.0d'",       1234567,        "'1234567'");
    AssertFmtEq("'%07.7d'",       1234567,        "'1234567'");
    AssertFmtEq("'%07.9d'",       1234567,        "'1234567'");
    AssertFmtEq("'%07.20d'",      1234567,        "'1234567'");
    AssertFmtEq("'%09.d'",        1234567,        "'001234567'");
    AssertFmtEq("'%09.0d'",       1234567,        "'001234567'");
    AssertFmtEq("'%09.7d'",       1234567,        "'001234567'");
    AssertFmtEq("'%09.9d'",       1234567,        "'001234567'");
    AssertFmtEq("'%09.20d'",      1234567,        "'001234567'");
    AssertFmtEq("'%020.d'",       1234567,        "'00000000000001234567'");
    AssertFmtEq("'%020.0d'",      1234567,        "'00000000000001234567'");
    AssertFmtEq("'%020.7d'",      1234567,        "'00000000000001234567'");
    AssertFmtEq("'%020.9d'",      1234567,        "'00000000000001234567'");
    AssertFmtEq("'%020.20d'",     1234567,        "'00000000000001234567'");
    AssertFmtEq("'%00.d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%00.0d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%00.8d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%00.9d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%00.20d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%08.d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%08.0d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%08.8d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%08.9d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%08.20d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%09.d'",        -1234567,       "'-01234567'");
    AssertFmtEq("'%09.0d'",       -1234567,       "'-01234567'");
    AssertFmtEq("'%09.8d'",       -1234567,       "'-01234567'");
    AssertFmtEq("'%09.9d'",       -1234567,       "'-01234567'");
    AssertFmtEq("'%09.20d'",      -1234567,       "'-01234567'");
    AssertFmtEq("'%020.d'",       -1234567,       "'-0000000000001234567'");
    AssertFmtEq("'%020.0d'",      -1234567,       "'-0000000000001234567'");
    AssertFmtEq("'%020.8d'",      -1234567,       "'-0000000000001234567'");
    AssertFmtEq("'%020.9d'",      -1234567,       "'-0000000000001234567'");
    AssertFmtEq("'%020.20d'",     -1234567,       "'-0000000000001234567'");

    AssertFmtEq("'%-0.d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-0.0d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.7d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.9d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-0.20d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-7.d'",        1234567,        "'1234567'");
    AssertFmtEq("'%-7.0d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-7.7d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-7.9d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-7.20d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-9.d'",        1234567,        "'1234567  '");
    AssertFmtEq("'%-9.0d'",       1234567,        "'1234567  '");
    AssertFmtEq("'%-9.7d'",       1234567,        "'1234567  '");
    AssertFmtEq("'%-9.9d'",       1234567,        "'1234567  '");
    AssertFmtEq("'%-9.20d'",      1234567,        "'1234567  '");
    AssertFmtEq("'%-20.d'",       1234567,        "'1234567             '");
    AssertFmtEq("'%-20.0d'",      1234567,        "'1234567             '");
    AssertFmtEq("'%-20.7d'",      1234567,        "'1234567             '");
    AssertFmtEq("'%-20.9d'",      1234567,        "'1234567             '");
    AssertFmtEq("'%-20.20d'",     1234567,        "'1234567             '");
    AssertFmtEq("'%-0.d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.0d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.8d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.9d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-0.20d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-8.d'",        -1234567,       "'-1234567'");
    AssertFmtEq("'%-8.0d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-8.8d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-8.9d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-8.20d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-9.d'",        -1234567,       "'-1234567 '");
    AssertFmtEq("'%-9.0d'",       -1234567,       "'-1234567 '");
    AssertFmtEq("'%-9.8d'",       -1234567,       "'-1234567 '");
    AssertFmtEq("'%-9.9d'",       -1234567,       "'-1234567 '");
    AssertFmtEq("'%-9.20d'",      -1234567,       "'-1234567 '");
    AssertFmtEq("'%-20.d'",       -1234567,       "'-1234567            '");
    AssertFmtEq("'%-20.0d'",      -1234567,       "'-1234567            '");
    AssertFmtEq("'%-20.8d'",      -1234567,       "'-1234567            '");
    AssertFmtEq("'%-20.9d'",      -1234567,       "'-1234567            '");
    AssertFmtEq("'%-20.20d'",     -1234567,       "'-1234567            '");

    AssertFmtEq("'%-00.d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-00.0d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-00.7d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-00.9d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-00.20d'",     1234567,        "'1234567'");
    AssertFmtEq("'%-07.d'",       1234567,        "'1234567'");
    AssertFmtEq("'%-07.0d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-07.7d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-07.9d'",      1234567,        "'1234567'");
    AssertFmtEq("'%-07.20d'",     1234567,        "'1234567'");
    AssertFmtEq("'%-09.d'",       1234567,        "'123456700'");
    AssertFmtEq("'%-09.0d'",      1234567,        "'123456700'");
    AssertFmtEq("'%-09.7d'",      1234567,        "'123456700'");
    AssertFmtEq("'%-09.9d'",      1234567,        "'123456700'");
    AssertFmtEq("'%-09.20d'",     1234567,        "'123456700'");
    AssertFmtEq("'%-020.d'",      1234567,        "'12345670000000000000'");
    AssertFmtEq("'%-020.0d'",     1234567,        "'12345670000000000000'");
    AssertFmtEq("'%-020.7d'",     1234567,        "'12345670000000000000'");
    AssertFmtEq("'%-020.9d'",     1234567,        "'12345670000000000000'");
    AssertFmtEq("'%-020.20d'",    1234567,        "'12345670000000000000'");
    AssertFmtEq("'%-00.d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-00.0d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-00.8d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-00.9d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-00.20d'",     -1234567,       "'-1234567'");
    AssertFmtEq("'%-08.d'",       -1234567,       "'-1234567'");
    AssertFmtEq("'%-08.0d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-08.8d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-08.9d'",      -1234567,       "'-1234567'");
    AssertFmtEq("'%-08.20d'",     -1234567,       "'-1234567'");
    AssertFmtEq("'%-09.d'",       -1234567,       "'-12345670'");
    AssertFmtEq("'%-09.0d'",      -1234567,       "'-12345670'");
    AssertFmtEq("'%-09.8d'",      -1234567,       "'-12345670'");
    AssertFmtEq("'%-09.9d'",      -1234567,       "'-12345670'");
    AssertFmtEq("'%-09.20d'",     -1234567,       "'-12345670'");
    AssertFmtEq("'%-020.d'",      -1234567,       "'-1234567000000000000'");
    AssertFmtEq("'%-020.0d'",     -1234567,       "'-1234567000000000000'");
    AssertFmtEq("'%-020.8d'",     -1234567,       "'-1234567000000000000'");
    AssertFmtEq("'%-020.9d'",     -1234567,       "'-1234567000000000000'");
    AssertFmtEq("'%-020.20d'",    -1234567,       "'-1234567000000000000'");
}

stock void AssertFmtEq(const char[] fmt, int value, const char[] expected)
{
    char buffer[256];
    FormatEx(buffer, sizeof(buffer), fmt, value);
    AssertStrEq(fmt, buffer, expected);
}
Click to expand outputs
sm plugins reload test
[1] Test Integer: ''%d'' == ''0'' OK
[2] Test Integer: ''%d'' == ''128'' OK
[3] Test Integer: ''%d'' == ''1234567'' OK
[4] Test Integer: ''%d'' == ''2147483647'' OK
[5] Test Integer: ''%d'' == ''-128'' OK
[6] Test Integer: ''%d'' == ''-1234567'' OK
[7] Test Integer: ''%d'' == ''-2147483648'' OK
[8] Test Integer: ''%i'' == ''0'' OK
[9] Test Integer: ''%i'' == ''128'' OK
[10] Test Integer: ''%i'' == ''1234567'' OK
[11] Test Integer: ''%i'' == ''2147483647'' OK
[12] Test Integer: ''%i'' == ''-128'' OK
[13] Test Integer: ''%i'' == ''-1234567'' OK
[14] Test Integer: ''%i'' == ''-2147483648'' OK
[15] Test Integer: ''%.0d'' == ''1234567'' OK
[16] Test Integer: ''%.7d'' == ''1234567'' OK
[17] Test Integer: ''%.9d'' == ''1234567'' OK
[18] Test Integer: ''%.20d'' == ''1234567'' OK
[19] Test Integer: ''%.0d'' == ''-1234567'' OK
[20] Test Integer: ''%.8d'' == ''-1234567'' OK
[21] Test Integer: ''%.9d'' == ''-1234567'' OK
[22] Test Integer: ''%.20d'' == ''-1234567'' OK
[23] Test Integer: ''%0d'' == ''1234567'' OK
[24] Test Integer: ''%7d'' == ''1234567'' OK
[25] Test Integer: ''%9d'' == ''  1234567'' OK
[26] Test Integer: ''%20d'' == ''             1234567'' OK
[27] Test Integer: ''%0d'' == ''-1234567'' OK
[28] Test Integer: ''%8d'' == ''-1234567'' OK
[29] Test Integer: ''%9d'' == '' -1234567'' OK
[30] Test Integer: ''%20d'' == ''            -1234567'' OK
[31] Test Integer: ''%0.7d'' == ''1234567'' OK
[32] Test Integer: ''%0.9d'' == ''1234567'' OK
[33] Test Integer: ''%7.7d'' == ''1234567'' OK
[34] Test Integer: ''%7.9d'' == ''1234567'' OK
[35] Test Integer: ''%9.7d'' == ''  1234567'' OK
[36] Test Integer: ''%9.9d'' == ''  1234567'' OK
[37] Test Integer: ''%20.7d'' == ''             1234567'' OK
[38] Test Integer: ''%20.9d'' == ''             1234567'' OK
[39] Test Integer: ''%0.8d'' == ''-1234567'' OK
[40] Test Integer: ''%0.9d'' == ''-1234567'' OK
[41] Test Integer: ''%8.8d'' == ''-1234567'' OK
[42] Test Integer: ''%8.9d'' == ''-1234567'' OK
[43] Test Integer: ''%9.8d'' == '' -1234567'' OK
[44] Test Integer: ''%9.9d'' == '' -1234567'' OK
[45] Test Integer: ''%20.8d'' == ''            -1234567'' OK
[46] Test Integer: ''%20.9d'' == ''            -1234567'' OK
[47] Test Integer: ''%0d'' == ''1234567'' OK
[48] Test Integer: ''%-d'' == ''1234567'' OK
[49] Test Integer: ''%0-d'' == ''1234567'' OK
[50] Test Integer: ''%0d'' == ''-1234567'' OK
[51] Test Integer: ''%-d'' == ''-1234567'' OK
[52] Test Integer: ''%0-d'' == ''-1234567'' OK
[53] Test Integer: ''%0.d'' == ''1234567'' OK
[54] Test Integer: ''%0.0d'' == ''1234567'' OK
[55] Test Integer: ''%0.7d'' == ''1234567'' OK
[56] Test Integer: ''%0.9d'' == ''1234567'' OK
[57] Test Integer: ''%0.20d'' == ''1234567'' OK
[58] Test Integer: ''%-.d'' == ''1234567'' OK
[59] Test Integer: ''%-.0d'' == ''1234567'' OK
[60] Test Integer: ''%-.7d'' == ''1234567'' OK
[61] Test Integer: ''%-.9d'' == ''1234567'' OK
[62] Test Integer: ''%-.20d'' == ''1234567'' OK
[63] Test Integer: ''%-0.d'' == ''1234567'' OK
[64] Test Integer: ''%-0.0d'' == ''1234567'' OK
[65] Test Integer: ''%-0.7d'' == ''1234567'' OK
[66] Test Integer: ''%-0.9d'' == ''1234567'' OK
[67] Test Integer: ''%-0.20d'' == ''1234567'' OK
[68] Test Integer: ''%0.d'' == ''-1234567'' OK
[69] Test Integer: ''%0.0d'' == ''-1234567'' OK
[70] Test Integer: ''%0.8d'' == ''-1234567'' OK
[71] Test Integer: ''%0.9d'' == ''-1234567'' OK
[72] Test Integer: ''%0.20d'' == ''-1234567'' OK
[73] Test Integer: ''%-.d'' == ''-1234567'' OK
[74] Test Integer: ''%-.0d'' == ''-1234567'' OK
[75] Test Integer: ''%-.8d'' == ''-1234567'' OK
[76] Test Integer: ''%-.9d'' == ''-1234567'' OK
[77] Test Integer: ''%-.20d'' == ''-1234567'' OK
[78] Test Integer: ''%-0.d'' == ''-1234567'' OK
[79] Test Integer: ''%-0.0d'' == ''-1234567'' OK
[80] Test Integer: ''%-0.8d'' == ''-1234567'' OK
[81] Test Integer: ''%-0.9d'' == ''-1234567'' OK
[82] Test Integer: ''%-0.20d'' == ''-1234567'' OK
[83] Test Integer: ''%00d'' == ''1234567'' OK
[84] Test Integer: ''%07d'' == ''1234567'' OK
[85] Test Integer: ''%09d'' == ''001234567'' OK
[86] Test Integer: ''%020d'' == ''00000000000001234567'' OK
[87] Test Integer: ''%-0d'' == ''1234567'' OK
[88] Test Integer: ''%-7d'' == ''1234567'' OK
[89] Test Integer: ''%-9d'' == ''1234567  '' OK
[90] Test Integer: ''%-20d'' == ''1234567             '' OK
[91] Test Integer: ''%-00d'' == ''1234567'' OK
[92] Test Integer: ''%-07d'' == ''1234567'' OK
[93] Test Integer: ''%-09d'' == ''123456700'' OK
[94] Test Integer: ''%-020d'' == ''12345670000000000000'' OK
[95] Test Integer: ''%00d'' == ''-1234567'' OK
[96] Test Integer: ''%08d'' == ''-1234567'' OK
[97] Test Integer: ''%09d'' == ''-01234567'' OK
[98] Test Integer: ''%020d'' == ''-0000000000001234567'' OK
[99] Test Integer: ''%-0d'' == ''-1234567'' OK
[100] Test Integer: ''%-8d'' == ''-1234567'' OK
[101] Test Integer: ''%-9d'' == ''-1234567 '' OK
[102] Test Integer: ''%-20d'' == ''-1234567            '' OK
[103] Test Integer: ''%-00d'' == ''-1234567'' OK
[104] Test Integer: ''%-08d'' == ''-1234567'' OK
[105] Test Integer: ''%-09d'' == ''-12345670'' OK
[106] Test Integer: ''%-020d'' == ''-1234567000000000000'' OK
[107] Test Integer: ''%00.d'' == ''1234567'' OK
[108] Test Integer: ''%00.0d'' == ''1234567'' OK
[109] Test Integer: ''%00.7d'' == ''1234567'' OK
[110] Test Integer: ''%00.9d'' == ''1234567'' OK
[111] Test Integer: ''%00.20d'' == ''1234567'' OK
[112] Test Integer: ''%07.d'' == ''1234567'' OK
[113] Test Integer: ''%07.0d'' == ''1234567'' OK
[114] Test Integer: ''%07.7d'' == ''1234567'' OK
[115] Test Integer: ''%07.9d'' == ''1234567'' OK
[116] Test Integer: ''%07.20d'' == ''1234567'' OK
[117] Test Integer: ''%09.d'' == ''001234567'' OK
[118] Test Integer: ''%09.0d'' == ''001234567'' OK
[119] Test Integer: ''%09.7d'' == ''001234567'' OK
[120] Test Integer: ''%09.9d'' == ''001234567'' OK
[121] Test Integer: ''%09.20d'' == ''001234567'' OK
[122] Test Integer: ''%020.d'' == ''00000000000001234567'' OK
[123] Test Integer: ''%020.0d'' == ''00000000000001234567'' OK
[124] Test Integer: ''%020.7d'' == ''00000000000001234567'' OK
[125] Test Integer: ''%020.9d'' == ''00000000000001234567'' OK
[126] Test Integer: ''%020.20d'' == ''00000000000001234567'' OK
[127] Test Integer: ''%00.d'' == ''-1234567'' OK
[128] Test Integer: ''%00.0d'' == ''-1234567'' OK
[129] Test Integer: ''%00.8d'' == ''-1234567'' OK
[130] Test Integer: ''%00.9d'' == ''-1234567'' OK
[131] Test Integer: ''%00.20d'' == ''-1234567'' OK
[132] Test Integer: ''%08.d'' == ''-1234567'' OK
[133] Test Integer: ''%08.0d'' == ''-1234567'' OK
[134] Test Integer: ''%08.8d'' == ''-1234567'' OK
[135] Test Integer: ''%08.9d'' == ''-1234567'' OK
[136] Test Integer: ''%08.20d'' == ''-1234567'' OK
[137] Test Integer: ''%09.d'' == ''-01234567'' OK
[138] Test Integer: ''%09.0d'' == ''-01234567'' OK
[139] Test Integer: ''%09.8d'' == ''-01234567'' OK
[140] Test Integer: ''%09.9d'' == ''-01234567'' OK
[141] Test Integer: ''%09.20d'' == ''-01234567'' OK
[142] Test Integer: ''%020.d'' == ''-0000000000001234567'' OK
[143] Test Integer: ''%020.0d'' == ''-0000000000001234567'' OK
[144] Test Integer: ''%020.8d'' == ''-0000000000001234567'' OK
[145] Test Integer: ''%020.9d'' == ''-0000000000001234567'' OK
[146] Test Integer: ''%020.20d'' == ''-0000000000001234567'' OK
[147] Test Integer: ''%-0.d'' == ''1234567'' OK
[148] Test Integer: ''%-0.0d'' == ''1234567'' OK
[149] Test Integer: ''%-0.7d'' == ''1234567'' OK
[150] Test Integer: ''%-0.9d'' == ''1234567'' OK
[151] Test Integer: ''%-0.20d'' == ''1234567'' OK
[152] Test Integer: ''%-7.d'' == ''1234567'' OK
[153] Test Integer: ''%-7.0d'' == ''1234567'' OK
[154] Test Integer: ''%-7.7d'' == ''1234567'' OK
[155] Test Integer: ''%-7.9d'' == ''1234567'' OK
[156] Test Integer: ''%-7.20d'' == ''1234567'' OK
[157] Test Integer: ''%-9.d'' == ''1234567  '' OK
[158] Test Integer: ''%-9.0d'' == ''1234567  '' OK
[159] Test Integer: ''%-9.7d'' == ''1234567  '' OK
[160] Test Integer: ''%-9.9d'' == ''1234567  '' OK
[161] Test Integer: ''%-9.20d'' == ''1234567  '' OK
[162] Test Integer: ''%-20.d'' == ''1234567             '' OK
[163] Test Integer: ''%-20.0d'' == ''1234567             '' OK
[164] Test Integer: ''%-20.7d'' == ''1234567             '' OK
[165] Test Integer: ''%-20.9d'' == ''1234567             '' OK
[166] Test Integer: ''%-20.20d'' == ''1234567             '' OK
[167] Test Integer: ''%-0.d'' == ''-1234567'' OK
[168] Test Integer: ''%-0.0d'' == ''-1234567'' OK
[169] Test Integer: ''%-0.8d'' == ''-1234567'' OK
[170] Test Integer: ''%-0.9d'' == ''-1234567'' OK
[171] Test Integer: ''%-0.20d'' == ''-1234567'' OK
[172] Test Integer: ''%-8.d'' == ''-1234567'' OK
[173] Test Integer: ''%-8.0d'' == ''-1234567'' OK
[174] Test Integer: ''%-8.8d'' == ''-1234567'' OK
[175] Test Integer: ''%-8.9d'' == ''-1234567'' OK
[176] Test Integer: ''%-8.20d'' == ''-1234567'' OK
[177] Test Integer: ''%-9.d'' == ''-1234567 '' OK
[178] Test Integer: ''%-9.0d'' == ''-1234567 '' OK
[179] Test Integer: ''%-9.8d'' == ''-1234567 '' OK
[180] Test Integer: ''%-9.9d'' == ''-1234567 '' OK
[181] Test Integer: ''%-9.20d'' == ''-1234567 '' OK
[182] Test Integer: ''%-20.d'' == ''-1234567            '' OK
[183] Test Integer: ''%-20.0d'' == ''-1234567            '' OK
[184] Test Integer: ''%-20.8d'' == ''-1234567            '' OK
[185] Test Integer: ''%-20.9d'' == ''-1234567            '' OK
[186] Test Integer: ''%-20.20d'' == ''-1234567            '' OK
[187] Test Integer: ''%-00.d'' == ''1234567'' OK
[188] Test Integer: ''%-00.0d'' == ''1234567'' OK
[189] Test Integer: ''%-00.7d'' == ''1234567'' OK
[190] Test Integer: ''%-00.9d'' == ''1234567'' OK
[191] Test Integer: ''%-00.20d'' == ''1234567'' OK
[192] Test Integer: ''%-07.d'' == ''1234567'' OK
[193] Test Integer: ''%-07.0d'' == ''1234567'' OK
[194] Test Integer: ''%-07.7d'' == ''1234567'' OK
[195] Test Integer: ''%-07.9d'' == ''1234567'' OK
[196] Test Integer: ''%-07.20d'' == ''1234567'' OK
[197] Test Integer: ''%-09.d'' == ''123456700'' OK
[198] Test Integer: ''%-09.0d'' == ''123456700'' OK
[199] Test Integer: ''%-09.7d'' == ''123456700'' OK
[200] Test Integer: ''%-09.9d'' == ''123456700'' OK
[201] Test Integer: ''%-09.20d'' == ''123456700'' OK
[202] Test Integer: ''%-020.d'' == ''12345670000000000000'' OK
[203] Test Integer: ''%-020.0d'' == ''12345670000000000000'' OK
[204] Test Integer: ''%-020.7d'' == ''12345670000000000000'' OK
[205] Test Integer: ''%-020.9d'' == ''12345670000000000000'' OK
[206] Test Integer: ''%-020.20d'' == ''12345670000000000000'' OK
[207] Test Integer: ''%-00.d'' == ''-1234567'' OK
[208] Test Integer: ''%-00.0d'' == ''-1234567'' OK
[209] Test Integer: ''%-00.8d'' == ''-1234567'' OK
[210] Test Integer: ''%-00.9d'' == ''-1234567'' OK
[211] Test Integer: ''%-00.20d'' == ''-1234567'' OK
[212] Test Integer: ''%-08.d'' == ''-1234567'' OK
[213] Test Integer: ''%-08.0d'' == ''-1234567'' OK
[214] Test Integer: ''%-08.8d'' == ''-1234567'' OK
[215] Test Integer: ''%-08.9d'' == ''-1234567'' OK
[216] Test Integer: ''%-08.20d'' == ''-1234567'' OK
[217] Test Integer: ''%-09.d'' == ''-12345670'' OK
[218] Test Integer: ''%-09.0d'' == ''-12345670'' OK
[219] Test Integer: ''%-09.8d'' == ''-12345670'' OK
[220] Test Integer: ''%-09.9d'' == ''-12345670'' OK
[221] Test Integer: ''%-09.20d'' == ''-12345670'' OK
[222] Test Integer: ''%-020.d'' == ''-1234567000000000000'' OK
[223] Test Integer: ''%-020.0d'' == ''-1234567000000000000'' OK
[224] Test Integer: ''%-020.8d'' == ''-1234567000000000000'' OK
[225] Test Integer: ''%-020.9d'' == ''-1234567000000000000'' OK
[226] Test Integer: ''%-020.20d'' == ''-1234567000000000000'' OK
[SM] Plugin test.smx reloaded successfully.

@peace-maker
Copy link
Copy Markdown
Member

You could add that script to the test suite run on the mock server in CI!

@F1F88
Copy link
Copy Markdown
Contributor Author

F1F88 commented Apr 24, 2026

The test script has been added to the test suit, and more test cases have been added.
Including: Character, Binary, Integer, Unsigned Integer, Float, Special ("%L", "%N", "%E"), String, Translates, Hex.

The results of my local run are as follows:

Click to expand outputs
[1] Test Char: ''%c'' == ''a'' OK
[2] Test Char: ''%%'' == ''%'' OK
[3] Test Char: ''%%c'' == ''%c'' OK
[4] Test Char: ''%%d'' == ''%d'' OK
[5] Test Char: ''%.c'' == ''a'' OK
[6] Test Char: ''%.0c'' == ''a'' OK
[7] Test Char: ''%.7c'' == ''a'' OK
[8] Test Char: ''%c'' == ''a'' OK
[9] Test Char: ''%0c'' == ''a'' OK
[10] Test Char: ''%7c'' == ''a'' OK
[11] Test Char: ''%0.c'' == ''a'' OK
[12] Test Char: ''%0.0c'' == ''a'' OK
[13] Test Char: ''%0.7c'' == ''a'' OK
[14] Test Char: ''%7.c'' == ''a'' OK
[15] Test Char: ''%7.0c'' == ''a'' OK
[16] Test Char: ''%7.7c'' == ''a'' OK
[17] Test Char: ''%0c'' == ''a'' OK
[18] Test Char: ''%-c'' == ''a'' OK
[19] Test Char: ''%0-c'' == ''a'' OK
[20] Test Char: ''%0.c'' == ''a'' OK
[21] Test Char: ''%0.0c'' == ''a'' OK
[22] Test Char: ''%0.7c'' == ''a'' OK
[23] Test Char: ''%-.c'' == ''a'' OK
[24] Test Char: ''%-.0c'' == ''a'' OK
[25] Test Char: ''%-.7c'' == ''a'' OK
[26] Test Char: ''%-0.c'' == ''a'' OK
[27] Test Char: ''%-0.0c'' == ''a'' OK
[28] Test Char: ''%-0.7c'' == ''a'' OK
[29] Test Char: ''%00c'' == ''a'' OK
[30] Test Char: ''%07c'' == ''a'' OK
[31] Test Char: ''%-0c'' == ''a'' OK
[32] Test Char: ''%-7c'' == ''a'' OK
[33] Test Char: ''%-00c'' == ''a'' OK
[34] Test Char: ''%-07c'' == ''a'' OK
[35] Test Char: ''%00.0c'' == ''a'' OK
[36] Test Char: ''%00.7c'' == ''a'' OK
[37] Test Char: ''%07.0c'' == ''a'' OK
[38] Test Char: ''%07.7c'' == ''a'' OK
[39] Test Char: ''%-0.0c'' == ''a'' OK
[40] Test Char: ''%-0.7c'' == ''a'' OK
[41] Test Char: ''%-7.0c'' == ''a'' OK
[42] Test Char: ''%-7.7c'' == ''a'' OK
[43] Test Char: ''%-00.0c'' == ''a'' OK
[44] Test Char: ''%-00.7c'' == ''a'' OK
[45] Test Char: ''%-07.0c'' == ''a'' OK
[46] Test Char: ''%-07.7c'' == ''a'' OK
[47] Test Binary: ''%b'' == ''0'' OK
[48] Test Binary: ''%b'' == ''10000000'' OK
[49] Test Binary: ''%b'' == ''100101101011010000111'' OK
[50] Test Binary: ''%b'' == ''1111111111111111111111111111111'' OK
[51] Test Binary: ''%b'' == ''11111111111111111111111111111111'' OK
[52] Test Binary: ''%b'' == ''11111111111111111111111111111111'' OK
[53] Test Binary: ''%.0b'' == ''100101101011010000111'' OK
[54] Test Binary: ''%.7b'' == ''100101101011010000111'' OK
[55] Test Binary: ''%.21b'' == ''100101101011010000111'' OK
[56] Test Binary: ''%.32b'' == ''100101101011010000111'' OK
[57] Test Binary: ''%0b'' == ''100101101011010000111'' OK
[58] Test Binary: ''%7b'' == ''100101101011010000111'' OK
[59] Test Binary: ''%21b'' == ''100101101011010000111'' OK
[60] Test Binary: ''%32b'' == ''           100101101011010000111'' OK
[61] Test Binary: ''%0.0b'' == ''100101101011010000111'' OK
[62] Test Binary: ''%0.7b'' == ''100101101011010000111'' OK
[63] Test Binary: ''%0.21b'' == ''100101101011010000111'' OK
[64] Test Binary: ''%0.32b'' == ''100101101011010000111'' OK
[65] Test Binary: ''%7.7b'' == ''100101101011010000111'' OK
[66] Test Binary: ''%7.21b'' == ''100101101011010000111'' OK
[67] Test Binary: ''%7.32b'' == ''100101101011010000111'' OK
[68] Test Binary: ''%21.7b'' == ''100101101011010000111'' OK
[69] Test Binary: ''%21.21b'' == ''100101101011010000111'' OK
[70] Test Binary: ''%21.32b'' == ''100101101011010000111'' OK
[71] Test Binary: ''%32.7b'' == ''           100101101011010000111'' OK
[72] Test Binary: ''%32.21b'' == ''           100101101011010000111'' OK
[73] Test Binary: ''%32.32b'' == ''           100101101011010000111'' OK
[74] Test Binary: ''%0b'' == ''100101101011010000111'' OK
[75] Test Binary: ''%-b'' == ''100101101011010000111'' OK
[76] Test Binary: ''%0-b'' == ''100101101011010000111'' OK
[77] Test Binary: ''%0.b'' == ''100101101011010000111'' OK
[78] Test Binary: ''%0.0b'' == ''100101101011010000111'' OK
[79] Test Binary: ''%0.7b'' == ''100101101011010000111'' OK
[80] Test Binary: ''%0.21b'' == ''100101101011010000111'' OK
[81] Test Binary: ''%0.32b'' == ''100101101011010000111'' OK
[82] Test Binary: ''%-.b'' == ''100101101011010000111'' OK
[83] Test Binary: ''%-.0b'' == ''100101101011010000111'' OK
[84] Test Binary: ''%-.7b'' == ''100101101011010000111'' OK
[85] Test Binary: ''%-.21b'' == ''100101101011010000111'' OK
[86] Test Binary: ''%-.32b'' == ''100101101011010000111'' OK
[87] Test Binary: ''%-0.b'' == ''100101101011010000111'' OK
[88] Test Binary: ''%-0.0b'' == ''100101101011010000111'' OK
[89] Test Binary: ''%-0.7b'' == ''100101101011010000111'' OK
[90] Test Binary: ''%-0.21b'' == ''100101101011010000111'' OK
[91] Test Binary: ''%-0.32b'' == ''100101101011010000111'' OK
[92] Test Binary: ''%00b'' == ''100101101011010000111'' OK
[93] Test Binary: ''%07b'' == ''100101101011010000111'' OK
[94] Test Binary: ''%021b'' == ''100101101011010000111'' OK
[95] Test Binary: ''%032b'' == ''00000000000100101101011010000111'' OK
[96] Test Binary: ''%-0b'' == ''100101101011010000111'' OK
[97] Test Binary: ''%-7b'' == ''100101101011010000111'' OK
[98] Test Binary: ''%-21b'' == ''100101101011010000111'' OK
[99] Test Binary: ''%-32b'' == ''100101101011010000111           '' OK
[100] Test Binary: ''%-00b'' == ''100101101011010000111'' OK
[101] Test Binary: ''%-07b'' == ''100101101011010000111'' OK
[102] Test Binary: ''%-021b'' == ''100101101011010000111'' OK
[103] Test Binary: ''%-032b'' == ''10010110101101000011100000000000'' OK
[104] Test Binary: ''%07.b'' == ''100101101011010000111'' OK
[105] Test Binary: ''%07.0b'' == ''100101101011010000111'' OK
[106] Test Binary: ''%07.7b'' == ''100101101011010000111'' OK
[107] Test Binary: ''%07.21b'' == ''100101101011010000111'' OK
[108] Test Binary: ''%07.32b'' == ''100101101011010000111'' OK
[109] Test Binary: ''%021.b'' == ''100101101011010000111'' OK
[110] Test Binary: ''%021.0b'' == ''100101101011010000111'' OK
[111] Test Binary: ''%021.7b'' == ''100101101011010000111'' OK
[112] Test Binary: ''%021.21b'' == ''100101101011010000111'' OK
[113] Test Binary: ''%021.32b'' == ''100101101011010000111'' OK
[114] Test Binary: ''%032.b'' == ''00000000000100101101011010000111'' OK
[115] Test Binary: ''%032.0b'' == ''00000000000100101101011010000111'' OK
[116] Test Binary: ''%032.7b'' == ''00000000000100101101011010000111'' OK
[117] Test Binary: ''%032.21b'' == ''00000000000100101101011010000111'' OK
[118] Test Binary: ''%032.32b'' == ''00000000000100101101011010000111'' OK
[119] Test Binary: ''%-7.b'' == ''100101101011010000111'' OK
[120] Test Binary: ''%-7.0b'' == ''100101101011010000111'' OK
[121] Test Binary: ''%-7.7b'' == ''100101101011010000111'' OK
[122] Test Binary: ''%-7.21b'' == ''100101101011010000111'' OK
[123] Test Binary: ''%-7.32b'' == ''100101101011010000111'' OK
[124] Test Binary: ''%-21.b'' == ''100101101011010000111'' OK
[125] Test Binary: ''%-21.0b'' == ''100101101011010000111'' OK
[126] Test Binary: ''%-21.7b'' == ''100101101011010000111'' OK
[127] Test Binary: ''%-21.21b'' == ''100101101011010000111'' OK
[128] Test Binary: ''%-21.32b'' == ''100101101011010000111'' OK
[129] Test Binary: ''%-32.b'' == ''100101101011010000111           '' OK
[130] Test Binary: ''%-32.0b'' == ''100101101011010000111           '' OK
[131] Test Binary: ''%-32.7b'' == ''100101101011010000111           '' OK
[132] Test Binary: ''%-32.21b'' == ''100101101011010000111           '' OK
[133] Test Binary: ''%-32.32b'' == ''100101101011010000111           '' OK
[134] Test Binary: ''%-07.b'' == ''100101101011010000111'' OK
[135] Test Binary: ''%-07.0b'' == ''100101101011010000111'' OK
[136] Test Binary: ''%-07.7b'' == ''100101101011010000111'' OK
[137] Test Binary: ''%-07.21b'' == ''100101101011010000111'' OK
[138] Test Binary: ''%-07.32b'' == ''100101101011010000111'' OK
[139] Test Binary: ''%-021.b'' == ''100101101011010000111'' OK
[140] Test Binary: ''%-021.0b'' == ''100101101011010000111'' OK
[141] Test Binary: ''%-021.7b'' == ''100101101011010000111'' OK
[142] Test Binary: ''%-021.21b'' == ''100101101011010000111'' OK
[143] Test Binary: ''%-021.32b'' == ''100101101011010000111'' OK
[144] Test Binary: ''%-032.b'' == ''10010110101101000011100000000000'' OK
[145] Test Binary: ''%-032.0b'' == ''10010110101101000011100000000000'' OK
[146] Test Binary: ''%-032.7b'' == ''10010110101101000011100000000000'' OK
[147] Test Binary: ''%-032.21b'' == ''10010110101101000011100000000000'' OK
[148] Test Binary: ''%-032.32b'' == ''10010110101101000011100000000000'' OK
[149] Test Integer: ''%d'' == ''0'' OK
[150] Test Integer: ''%d'' == ''128'' OK
[151] Test Integer: ''%d'' == ''1234567'' OK
[152] Test Integer: ''%d'' == ''2147483647'' OK
[153] Test Integer: ''%d'' == ''-128'' OK
[154] Test Integer: ''%d'' == ''-1234567'' OK
[155] Test Integer: ''%d'' == ''-2147483648'' OK
[156] Test Integer: ''%i'' == ''0'' OK
[157] Test Integer: ''%i'' == ''128'' OK
[158] Test Integer: ''%i'' == ''1234567'' OK
[159] Test Integer: ''%i'' == ''2147483647'' OK
[160] Test Integer: ''%i'' == ''-128'' OK
[161] Test Integer: ''%i'' == ''-1234567'' OK
[162] Test Integer: ''%i'' == ''-2147483648'' OK
[163] Test Integer: ''%.0d'' == ''1234567'' OK
[164] Test Integer: ''%.7d'' == ''1234567'' OK
[165] Test Integer: ''%.9d'' == ''1234567'' OK
[166] Test Integer: ''%.20d'' == ''1234567'' OK
[167] Test Integer: ''%.0d'' == ''-1234567'' OK
[168] Test Integer: ''%.8d'' == ''-1234567'' OK
[169] Test Integer: ''%.9d'' == ''-1234567'' OK
[170] Test Integer: ''%.20d'' == ''-1234567'' OK
[171] Test Integer: ''%0d'' == ''1234567'' OK
[172] Test Integer: ''%7d'' == ''1234567'' OK
[173] Test Integer: ''%9d'' == ''  1234567'' OK
[174] Test Integer: ''%20d'' == ''             1234567'' OK
[175] Test Integer: ''%0d'' == ''-1234567'' OK
[176] Test Integer: ''%8d'' == ''-1234567'' OK
[177] Test Integer: ''%9d'' == '' -1234567'' OK
[178] Test Integer: ''%20d'' == ''            -1234567'' OK
[179] Test Integer: ''%0.7d'' == ''1234567'' OK
[180] Test Integer: ''%0.9d'' == ''1234567'' OK
[181] Test Integer: ''%7.7d'' == ''1234567'' OK
[182] Test Integer: ''%7.9d'' == ''1234567'' OK
[183] Test Integer: ''%9.7d'' == ''  1234567'' OK
[184] Test Integer: ''%9.9d'' == ''  1234567'' OK
[185] Test Integer: ''%20.7d'' == ''             1234567'' OK
[186] Test Integer: ''%20.9d'' == ''             1234567'' OK
[187] Test Integer: ''%0.8d'' == ''-1234567'' OK
[188] Test Integer: ''%0.9d'' == ''-1234567'' OK
[189] Test Integer: ''%8.8d'' == ''-1234567'' OK
[190] Test Integer: ''%8.9d'' == ''-1234567'' OK
[191] Test Integer: ''%9.8d'' == '' -1234567'' OK
[192] Test Integer: ''%9.9d'' == '' -1234567'' OK
[193] Test Integer: ''%20.8d'' == ''            -1234567'' OK
[194] Test Integer: ''%20.9d'' == ''            -1234567'' OK
[195] Test Integer: ''%0d'' == ''1234567'' OK
[196] Test Integer: ''%-d'' == ''1234567'' OK
[197] Test Integer: ''%0-d'' == ''1234567'' OK
[198] Test Integer: ''%0d'' == ''-1234567'' OK
[199] Test Integer: ''%-d'' == ''-1234567'' OK
[200] Test Integer: ''%0-d'' == ''-1234567'' OK
[201] Test Integer: ''%0.d'' == ''1234567'' OK
[202] Test Integer: ''%0.0d'' == ''1234567'' OK
[203] Test Integer: ''%0.7d'' == ''1234567'' OK
[204] Test Integer: ''%0.9d'' == ''1234567'' OK
[205] Test Integer: ''%0.20d'' == ''1234567'' OK
[206] Test Integer: ''%-.d'' == ''1234567'' OK
[207] Test Integer: ''%-.0d'' == ''1234567'' OK
[208] Test Integer: ''%-.7d'' == ''1234567'' OK
[209] Test Integer: ''%-.9d'' == ''1234567'' OK
[210] Test Integer: ''%-.20d'' == ''1234567'' OK
[211] Test Integer: ''%-0.d'' == ''1234567'' OK
[212] Test Integer: ''%-0.0d'' == ''1234567'' OK
[213] Test Integer: ''%-0.7d'' == ''1234567'' OK
[214] Test Integer: ''%-0.9d'' == ''1234567'' OK
[215] Test Integer: ''%-0.20d'' == ''1234567'' OK
[216] Test Integer: ''%0.d'' == ''-1234567'' OK
[217] Test Integer: ''%0.0d'' == ''-1234567'' OK
[218] Test Integer: ''%0.8d'' == ''-1234567'' OK
[219] Test Integer: ''%0.9d'' == ''-1234567'' OK
[220] Test Integer: ''%0.20d'' == ''-1234567'' OK
[221] Test Integer: ''%-.d'' == ''-1234567'' OK
[222] Test Integer: ''%-.0d'' == ''-1234567'' OK
[223] Test Integer: ''%-.8d'' == ''-1234567'' OK
[224] Test Integer: ''%-.9d'' == ''-1234567'' OK
[225] Test Integer: ''%-.20d'' == ''-1234567'' OK
[226] Test Integer: ''%-0.d'' == ''-1234567'' OK
[227] Test Integer: ''%-0.0d'' == ''-1234567'' OK
[228] Test Integer: ''%-0.8d'' == ''-1234567'' OK
[229] Test Integer: ''%-0.9d'' == ''-1234567'' OK
[230] Test Integer: ''%-0.20d'' == ''-1234567'' OK
[231] Test Integer: ''%00d'' == ''1234567'' OK
[232] Test Integer: ''%07d'' == ''1234567'' OK
[233] Test Integer: ''%09d'' == ''001234567'' OK
[234] Test Integer: ''%020d'' == ''00000000000001234567'' OK
[235] Test Integer: ''%-0d'' == ''1234567'' OK
[236] Test Integer: ''%-7d'' == ''1234567'' OK
[237] Test Integer: ''%-9d'' == ''1234567  '' OK
[238] Test Integer: ''%-20d'' == ''1234567             '' OK
[239] Test Integer: ''%-00d'' == ''1234567'' OK
[240] Test Integer: ''%-07d'' == ''1234567'' OK
[241] Test Integer: ''%-09d'' == ''123456700'' OK
[242] Test Integer: ''%-020d'' == ''12345670000000000000'' OK
[243] Test Integer: ''%00d'' == ''-1234567'' OK
[244] Test Integer: ''%08d'' == ''-1234567'' OK
[245] Test Integer: ''%09d'' == ''-01234567'' OK
[246] Test Integer: ''%020d'' == ''-0000000000001234567'' OK
[247] Test Integer: ''%-0d'' == ''-1234567'' OK
[248] Test Integer: ''%-8d'' == ''-1234567'' OK
[249] Test Integer: ''%-9d'' == ''-1234567 '' OK
[250] Test Integer: ''%-20d'' == ''-1234567            '' OK
[251] Test Integer: ''%-00d'' == ''-1234567'' OK
[252] Test Integer: ''%-08d'' == ''-1234567'' OK
[253] Test Integer: ''%-09d'' == ''-12345670'' OK
[254] Test Integer: ''%-020d'' == ''-1234567000000000000'' OK
[255] Test Integer: ''%00.d'' == ''1234567'' OK
[256] Test Integer: ''%00.0d'' == ''1234567'' OK
[257] Test Integer: ''%00.7d'' == ''1234567'' OK
[258] Test Integer: ''%00.9d'' == ''1234567'' OK
[259] Test Integer: ''%00.20d'' == ''1234567'' OK
[260] Test Integer: ''%07.d'' == ''1234567'' OK
[261] Test Integer: ''%07.0d'' == ''1234567'' OK
[262] Test Integer: ''%07.7d'' == ''1234567'' OK
[263] Test Integer: ''%07.9d'' == ''1234567'' OK
[264] Test Integer: ''%07.20d'' == ''1234567'' OK
[265] Test Integer: ''%09.d'' == ''001234567'' OK
[266] Test Integer: ''%09.0d'' == ''001234567'' OK
[267] Test Integer: ''%09.7d'' == ''001234567'' OK
[268] Test Integer: ''%09.9d'' == ''001234567'' OK
[269] Test Integer: ''%09.20d'' == ''001234567'' OK
[270] Test Integer: ''%020.d'' == ''00000000000001234567'' OK
[271] Test Integer: ''%020.0d'' == ''00000000000001234567'' OK
[272] Test Integer: ''%020.7d'' == ''00000000000001234567'' OK
[273] Test Integer: ''%020.9d'' == ''00000000000001234567'' OK
[274] Test Integer: ''%020.20d'' == ''00000000000001234567'' OK
[275] Test Integer: ''%00.d'' == ''-1234567'' OK
[276] Test Integer: ''%00.0d'' == ''-1234567'' OK
[277] Test Integer: ''%00.8d'' == ''-1234567'' OK
[278] Test Integer: ''%00.9d'' == ''-1234567'' OK
[279] Test Integer: ''%00.20d'' == ''-1234567'' OK
[280] Test Integer: ''%08.d'' == ''-1234567'' OK
[281] Test Integer: ''%08.0d'' == ''-1234567'' OK
[282] Test Integer: ''%08.8d'' == ''-1234567'' OK
[283] Test Integer: ''%08.9d'' == ''-1234567'' OK
[284] Test Integer: ''%08.20d'' == ''-1234567'' OK
[285] Test Integer: ''%09.d'' == ''-01234567'' OK
[286] Test Integer: ''%09.0d'' == ''-01234567'' OK
[287] Test Integer: ''%09.8d'' == ''-01234567'' OK
[288] Test Integer: ''%09.9d'' == ''-01234567'' OK
[289] Test Integer: ''%09.20d'' == ''-01234567'' OK
[290] Test Integer: ''%020.d'' == ''-0000000000001234567'' OK
[291] Test Integer: ''%020.0d'' == ''-0000000000001234567'' OK
[292] Test Integer: ''%020.8d'' == ''-0000000000001234567'' OK
[293] Test Integer: ''%020.9d'' == ''-0000000000001234567'' OK
[294] Test Integer: ''%020.20d'' == ''-0000000000001234567'' OK
[295] Test Integer: ''%-0.d'' == ''1234567'' OK
[296] Test Integer: ''%-0.0d'' == ''1234567'' OK
[297] Test Integer: ''%-0.7d'' == ''1234567'' OK
[298] Test Integer: ''%-0.9d'' == ''1234567'' OK
[299] Test Integer: ''%-0.20d'' == ''1234567'' OK
[300] Test Integer: ''%-7.d'' == ''1234567'' OK
[301] Test Integer: ''%-7.0d'' == ''1234567'' OK
[302] Test Integer: ''%-7.7d'' == ''1234567'' OK
[303] Test Integer: ''%-7.9d'' == ''1234567'' OK
[304] Test Integer: ''%-7.20d'' == ''1234567'' OK
[305] Test Integer: ''%-9.d'' == ''1234567  '' OK
[306] Test Integer: ''%-9.0d'' == ''1234567  '' OK
[307] Test Integer: ''%-9.7d'' == ''1234567  '' OK
[308] Test Integer: ''%-9.9d'' == ''1234567  '' OK
[309] Test Integer: ''%-9.20d'' == ''1234567  '' OK
[310] Test Integer: ''%-20.d'' == ''1234567             '' OK
[311] Test Integer: ''%-20.0d'' == ''1234567             '' OK
[312] Test Integer: ''%-20.7d'' == ''1234567             '' OK
[313] Test Integer: ''%-20.9d'' == ''1234567             '' OK
[314] Test Integer: ''%-20.20d'' == ''1234567             '' OK
[315] Test Integer: ''%-0.d'' == ''-1234567'' OK
[316] Test Integer: ''%-0.0d'' == ''-1234567'' OK
[317] Test Integer: ''%-0.8d'' == ''-1234567'' OK
[318] Test Integer: ''%-0.9d'' == ''-1234567'' OK
[319] Test Integer: ''%-0.20d'' == ''-1234567'' OK
[320] Test Integer: ''%-8.d'' == ''-1234567'' OK
[321] Test Integer: ''%-8.0d'' == ''-1234567'' OK
[322] Test Integer: ''%-8.8d'' == ''-1234567'' OK
[323] Test Integer: ''%-8.9d'' == ''-1234567'' OK
[324] Test Integer: ''%-8.20d'' == ''-1234567'' OK
[325] Test Integer: ''%-9.d'' == ''-1234567 '' OK
[326] Test Integer: ''%-9.0d'' == ''-1234567 '' OK
[327] Test Integer: ''%-9.8d'' == ''-1234567 '' OK
[328] Test Integer: ''%-9.9d'' == ''-1234567 '' OK
[329] Test Integer: ''%-9.20d'' == ''-1234567 '' OK
[330] Test Integer: ''%-20.d'' == ''-1234567            '' OK
[331] Test Integer: ''%-20.0d'' == ''-1234567            '' OK
[332] Test Integer: ''%-20.8d'' == ''-1234567            '' OK
[333] Test Integer: ''%-20.9d'' == ''-1234567            '' OK
[334] Test Integer: ''%-20.20d'' == ''-1234567            '' OK
[335] Test Integer: ''%-00.d'' == ''1234567'' OK
[336] Test Integer: ''%-00.0d'' == ''1234567'' OK
[337] Test Integer: ''%-00.7d'' == ''1234567'' OK
[338] Test Integer: ''%-00.9d'' == ''1234567'' OK
[339] Test Integer: ''%-00.20d'' == ''1234567'' OK
[340] Test Integer: ''%-07.d'' == ''1234567'' OK
[341] Test Integer: ''%-07.0d'' == ''1234567'' OK
[342] Test Integer: ''%-07.7d'' == ''1234567'' OK
[343] Test Integer: ''%-07.9d'' == ''1234567'' OK
[344] Test Integer: ''%-07.20d'' == ''1234567'' OK
[345] Test Integer: ''%-09.d'' == ''123456700'' OK
[346] Test Integer: ''%-09.0d'' == ''123456700'' OK
[347] Test Integer: ''%-09.7d'' == ''123456700'' OK
[348] Test Integer: ''%-09.9d'' == ''123456700'' OK
[349] Test Integer: ''%-09.20d'' == ''123456700'' OK
[350] Test Integer: ''%-020.d'' == ''12345670000000000000'' OK
[351] Test Integer: ''%-020.0d'' == ''12345670000000000000'' OK
[352] Test Integer: ''%-020.7d'' == ''12345670000000000000'' OK
[353] Test Integer: ''%-020.9d'' == ''12345670000000000000'' OK
[354] Test Integer: ''%-020.20d'' == ''12345670000000000000'' OK
[355] Test Integer: ''%-00.d'' == ''-1234567'' OK
[356] Test Integer: ''%-00.0d'' == ''-1234567'' OK
[357] Test Integer: ''%-00.8d'' == ''-1234567'' OK
[358] Test Integer: ''%-00.9d'' == ''-1234567'' OK
[359] Test Integer: ''%-00.20d'' == ''-1234567'' OK
[360] Test Integer: ''%-08.d'' == ''-1234567'' OK
[361] Test Integer: ''%-08.0d'' == ''-1234567'' OK
[362] Test Integer: ''%-08.8d'' == ''-1234567'' OK
[363] Test Integer: ''%-08.9d'' == ''-1234567'' OK
[364] Test Integer: ''%-08.20d'' == ''-1234567'' OK
[365] Test Integer: ''%-09.d'' == ''-12345670'' OK
[366] Test Integer: ''%-09.0d'' == ''-12345670'' OK
[367] Test Integer: ''%-09.8d'' == ''-12345670'' OK
[368] Test Integer: ''%-09.9d'' == ''-12345670'' OK
[369] Test Integer: ''%-09.20d'' == ''-12345670'' OK
[370] Test Integer: ''%-020.d'' == ''-1234567000000000000'' OK
[371] Test Integer: ''%-020.0d'' == ''-1234567000000000000'' OK
[372] Test Integer: ''%-020.8d'' == ''-1234567000000000000'' OK
[373] Test Integer: ''%-020.9d'' == ''-1234567000000000000'' OK
[374] Test Integer: ''%-020.20d'' == ''-1234567000000000000'' OK
[375] Test Unsigned Integer: ''%u'' == ''0'' OK
[376] Test Unsigned Integer: ''%u'' == ''128'' OK
[377] Test Unsigned Integer: ''%u'' == ''1234567'' OK
[378] Test Unsigned Integer: ''%u'' == ''2147483647'' OK
[379] Test Unsigned Integer: ''%u'' == ''4294967295'' OK
[380] Test Unsigned Integer: ''%u'' == ''4294967295'' OK
[381] Test Unsigned Integer: ''%.0u'' == ''1234567'' OK
[382] Test Unsigned Integer: ''%.3u'' == ''1234567'' OK
[383] Test Unsigned Integer: ''%.7u'' == ''1234567'' OK
[384] Test Unsigned Integer: ''%.9u'' == ''1234567'' OK
[385] Test Unsigned Integer: ''%.20u'' == ''1234567'' OK
[386] Test Unsigned Integer: ''%0u'' == ''1234567'' OK
[387] Test Unsigned Integer: ''%3u'' == ''1234567'' OK
[388] Test Unsigned Integer: ''%7u'' == ''1234567'' OK
[389] Test Unsigned Integer: ''%9u'' == ''  1234567'' OK
[390] Test Unsigned Integer: ''%20u'' == ''             1234567'' OK
[391] Test Unsigned Integer: ''%0.3u'' == ''1234567'' OK
[392] Test Unsigned Integer: ''%0.7u'' == ''1234567'' OK
[393] Test Unsigned Integer: ''%0.9u'' == ''1234567'' OK
[394] Test Unsigned Integer: ''%3.3u'' == ''1234567'' OK
[395] Test Unsigned Integer: ''%3.7u'' == ''1234567'' OK
[396] Test Unsigned Integer: ''%3.9u'' == ''1234567'' OK
[397] Test Unsigned Integer: ''%7.3u'' == ''1234567'' OK
[398] Test Unsigned Integer: ''%7.7u'' == ''1234567'' OK
[399] Test Unsigned Integer: ''%7.9u'' == ''1234567'' OK
[400] Test Unsigned Integer: ''%9.3u'' == ''  1234567'' OK
[401] Test Unsigned Integer: ''%9.7u'' == ''  1234567'' OK
[402] Test Unsigned Integer: ''%9.9u'' == ''  1234567'' OK
[403] Test Unsigned Integer: ''%20.3u'' == ''             1234567'' OK
[404] Test Unsigned Integer: ''%20.7u'' == ''             1234567'' OK
[405] Test Unsigned Integer: ''%20.9u'' == ''             1234567'' OK
[406] Test Unsigned Integer: ''%0u'' == ''1234567'' OK
[407] Test Unsigned Integer: ''%-u'' == ''1234567'' OK
[408] Test Unsigned Integer: ''%0-u'' == ''1234567'' OK
[409] Test Unsigned Integer: ''%0.u'' == ''1234567'' OK
[410] Test Unsigned Integer: ''%0.0u'' == ''1234567'' OK
[411] Test Unsigned Integer: ''%0.3u'' == ''1234567'' OK
[412] Test Unsigned Integer: ''%0.7u'' == ''1234567'' OK
[413] Test Unsigned Integer: ''%0.9u'' == ''1234567'' OK
[414] Test Unsigned Integer: ''%0.20u'' == ''1234567'' OK
[415] Test Unsigned Integer: ''%-.u'' == ''1234567'' OK
[416] Test Unsigned Integer: ''%-.0u'' == ''1234567'' OK
[417] Test Unsigned Integer: ''%-.3u'' == ''1234567'' OK
[418] Test Unsigned Integer: ''%-.7u'' == ''1234567'' OK
[419] Test Unsigned Integer: ''%-.9u'' == ''1234567'' OK
[420] Test Unsigned Integer: ''%-.20u'' == ''1234567'' OK
[421] Test Unsigned Integer: ''%-0.u'' == ''1234567'' OK
[422] Test Unsigned Integer: ''%-0.0u'' == ''1234567'' OK
[423] Test Unsigned Integer: ''%-0.3u'' == ''1234567'' OK
[424] Test Unsigned Integer: ''%-0.7u'' == ''1234567'' OK
[425] Test Unsigned Integer: ''%-0.9u'' == ''1234567'' OK
[426] Test Unsigned Integer: ''%-0.20u'' == ''1234567'' OK
[427] Test Unsigned Integer: ''%00u'' == ''1234567'' OK
[428] Test Unsigned Integer: ''%03u'' == ''1234567'' OK
[429] Test Unsigned Integer: ''%07u'' == ''1234567'' OK
[430] Test Unsigned Integer: ''%09u'' == ''001234567'' OK
[431] Test Unsigned Integer: ''%020u'' == ''00000000000001234567'' OK
[432] Test Unsigned Integer: ''%-0u'' == ''1234567'' OK
[433] Test Unsigned Integer: ''%-3u'' == ''1234567'' OK
[434] Test Unsigned Integer: ''%-7u'' == ''1234567'' OK
[435] Test Unsigned Integer: ''%-9u'' == ''1234567  '' OK
[436] Test Unsigned Integer: ''%-20u'' == ''1234567             '' OK
[437] Test Unsigned Integer: ''%-00u'' == ''1234567'' OK
[438] Test Unsigned Integer: ''%-03u'' == ''1234567'' OK
[439] Test Unsigned Integer: ''%-07u'' == ''1234567'' OK
[440] Test Unsigned Integer: ''%-09u'' == ''123456700'' OK
[441] Test Unsigned Integer: ''%-020u'' == ''12345670000000000000'' OK
[442] Test Unsigned Integer: ''%00.u'' == ''1234567'' OK
[443] Test Unsigned Integer: ''%00.0u'' == ''1234567'' OK
[444] Test Unsigned Integer: ''%00.3u'' == ''1234567'' OK
[445] Test Unsigned Integer: ''%00.7u'' == ''1234567'' OK
[446] Test Unsigned Integer: ''%00.9u'' == ''1234567'' OK
[447] Test Unsigned Integer: ''%00.20u'' == ''1234567'' OK
[448] Test Unsigned Integer: ''%03.u'' == ''1234567'' OK
[449] Test Unsigned Integer: ''%03.0u'' == ''1234567'' OK
[450] Test Unsigned Integer: ''%03.3u'' == ''1234567'' OK
[451] Test Unsigned Integer: ''%03.7u'' == ''1234567'' OK
[452] Test Unsigned Integer: ''%03.9u'' == ''1234567'' OK
[453] Test Unsigned Integer: ''%03.20u'' == ''1234567'' OK
[454] Test Unsigned Integer: ''%07.u'' == ''1234567'' OK
[455] Test Unsigned Integer: ''%07.0u'' == ''1234567'' OK
[456] Test Unsigned Integer: ''%07.3u'' == ''1234567'' OK
[457] Test Unsigned Integer: ''%07.7u'' == ''1234567'' OK
[458] Test Unsigned Integer: ''%07.9u'' == ''1234567'' OK
[459] Test Unsigned Integer: ''%07.20u'' == ''1234567'' OK
[460] Test Unsigned Integer: ''%09.u'' == ''001234567'' OK
[461] Test Unsigned Integer: ''%09.0u'' == ''001234567'' OK
[462] Test Unsigned Integer: ''%09.3u'' == ''001234567'' OK
[463] Test Unsigned Integer: ''%09.7u'' == ''001234567'' OK
[464] Test Unsigned Integer: ''%09.9u'' == ''001234567'' OK
[465] Test Unsigned Integer: ''%09.20u'' == ''001234567'' OK
[466] Test Unsigned Integer: ''%020.u'' == ''00000000000001234567'' OK
[467] Test Unsigned Integer: ''%020.0u'' == ''00000000000001234567'' OK
[468] Test Unsigned Integer: ''%020.3u'' == ''00000000000001234567'' OK
[469] Test Unsigned Integer: ''%020.7u'' == ''00000000000001234567'' OK
[470] Test Unsigned Integer: ''%020.9u'' == ''00000000000001234567'' OK
[471] Test Unsigned Integer: ''%020.20u'' == ''00000000000001234567'' OK
[472] Test Unsigned Integer: ''%-0.u'' == ''1234567'' OK
[473] Test Unsigned Integer: ''%-0.0u'' == ''1234567'' OK
[474] Test Unsigned Integer: ''%-0.3u'' == ''1234567'' OK
[475] Test Unsigned Integer: ''%-0.7u'' == ''1234567'' OK
[476] Test Unsigned Integer: ''%-0.9u'' == ''1234567'' OK
[477] Test Unsigned Integer: ''%-0.20u'' == ''1234567'' OK
[478] Test Unsigned Integer: ''%-3.u'' == ''1234567'' OK
[479] Test Unsigned Integer: ''%-3.0u'' == ''1234567'' OK
[480] Test Unsigned Integer: ''%-3.3u'' == ''1234567'' OK
[481] Test Unsigned Integer: ''%-3.7u'' == ''1234567'' OK
[482] Test Unsigned Integer: ''%-3.9u'' == ''1234567'' OK
[483] Test Unsigned Integer: ''%-3.20u'' == ''1234567'' OK
[484] Test Unsigned Integer: ''%-7.u'' == ''1234567'' OK
[485] Test Unsigned Integer: ''%-7.0u'' == ''1234567'' OK
[486] Test Unsigned Integer: ''%-7.3u'' == ''1234567'' OK
[487] Test Unsigned Integer: ''%-7.7u'' == ''1234567'' OK
[488] Test Unsigned Integer: ''%-7.9u'' == ''1234567'' OK
[489] Test Unsigned Integer: ''%-7.20u'' == ''1234567'' OK
[490] Test Unsigned Integer: ''%-9.u'' == ''1234567  '' OK
[491] Test Unsigned Integer: ''%-9.0u'' == ''1234567  '' OK
[492] Test Unsigned Integer: ''%-9.3u'' == ''1234567  '' OK
[493] Test Unsigned Integer: ''%-9.7u'' == ''1234567  '' OK
[494] Test Unsigned Integer: ''%-9.9u'' == ''1234567  '' OK
[495] Test Unsigned Integer: ''%-9.20u'' == ''1234567  '' OK
[496] Test Unsigned Integer: ''%-20.u'' == ''1234567             '' OK
[497] Test Unsigned Integer: ''%-20.0u'' == ''1234567             '' OK
[498] Test Unsigned Integer: ''%-20.3u'' == ''1234567             '' OK
[499] Test Unsigned Integer: ''%-20.7u'' == ''1234567             '' OK
[500] Test Unsigned Integer: ''%-20.9u'' == ''1234567             '' OK
[501] Test Unsigned Integer: ''%-20.20u'' == ''1234567             '' OK
[502] Test Unsigned Integer: ''%-00.u'' == ''1234567'' OK
[503] Test Unsigned Integer: ''%-00.0u'' == ''1234567'' OK
[504] Test Unsigned Integer: ''%-00.3u'' == ''1234567'' OK
[505] Test Unsigned Integer: ''%-00.7u'' == ''1234567'' OK
[506] Test Unsigned Integer: ''%-00.9u'' == ''1234567'' OK
[507] Test Unsigned Integer: ''%-00.20u'' == ''1234567'' OK
[508] Test Unsigned Integer: ''%-03.u'' == ''1234567'' OK
[509] Test Unsigned Integer: ''%-03.0u'' == ''1234567'' OK
[510] Test Unsigned Integer: ''%-03.3u'' == ''1234567'' OK
[511] Test Unsigned Integer: ''%-03.7u'' == ''1234567'' OK
[512] Test Unsigned Integer: ''%-03.9u'' == ''1234567'' OK
[513] Test Unsigned Integer: ''%-03.20u'' == ''1234567'' OK
[514] Test Unsigned Integer: ''%-07.u'' == ''1234567'' OK
[515] Test Unsigned Integer: ''%-07.0u'' == ''1234567'' OK
[516] Test Unsigned Integer: ''%-07.3u'' == ''1234567'' OK
[517] Test Unsigned Integer: ''%-07.7u'' == ''1234567'' OK
[518] Test Unsigned Integer: ''%-07.9u'' == ''1234567'' OK
[519] Test Unsigned Integer: ''%-07.20u'' == ''1234567'' OK
[520] Test Unsigned Integer: ''%-09.u'' == ''123456700'' OK
[521] Test Unsigned Integer: ''%-09.0u'' == ''123456700'' OK
[522] Test Unsigned Integer: ''%-09.3u'' == ''123456700'' OK
[523] Test Unsigned Integer: ''%-09.7u'' == ''123456700'' OK
[524] Test Unsigned Integer: ''%-09.9u'' == ''123456700'' OK
[525] Test Unsigned Integer: ''%-09.20u'' == ''123456700'' OK
[526] Test Unsigned Integer: ''%-020.u'' == ''12345670000000000000'' OK
[527] Test Unsigned Integer: ''%-020.0u'' == ''12345670000000000000'' OK
[528] Test Unsigned Integer: ''%-020.3u'' == ''12345670000000000000'' OK
[529] Test Unsigned Integer: ''%-020.7u'' == ''12345670000000000000'' OK
[530] Test Unsigned Integer: ''%-020.9u'' == ''12345670000000000000'' OK
[531] Test Unsigned Integer: ''%-020.20u'' == ''12345670000000000000'' OK
[532] Test Float: ''%f'' == ''0.000000'' OK
[533] Test Float: ''%f'' == ''0.000003'' OK
[534] Test Float: ''%f'' == ''1.000000'' OK
[535] Test Float: ''%f'' == ''3.141000'' OK
[536] Test Float: ''%f'' == ''123456.125000'' OK
[537] Test Float: ''%f'' == ''-0.000003'' OK
[538] Test Float: ''%f'' == ''-1.000000'' OK
[539] Test Float: ''%f'' == ''-3.141000'' OK
[540] Test Float: ''%f'' == ''-123456.125000'' OK
[541] Test Float: ''%.0f'' == ''0'' OK
[542] Test Float: ''%.0f'' == ''0'' OK
[543] Test Float: ''%.0f'' == ''1'' OK
[544] Test Float: ''%.0f'' == ''3'' OK
[545] Test Float: ''%.0f'' == ''3'' OK
[546] Test Float: ''%.0f'' == ''3'' OK
[547] Test Float: ''%.1f'' == ''3.6'' OK
[548] Test Float: ''%.2f'' == ''3.62'' OK
[549] Test Float: ''%.3f'' == ''3.625'' OK
[550] Test Float: ''%.6f'' == ''3.625000'' OK
[551] Test Float: ''%.9f'' == ''3.625000000'' OK
[552] Test Float: ''%.20f'' == ''3.62500000000000000000'' OK
[553] Test Float: ''%.0f'' == ''-0'' OK
[554] Test Float: ''%.0f'' == ''-1'' OK
[555] Test Float: ''%.0f'' == ''-3'' OK
[556] Test Float: ''%.0f'' == ''-3'' OK
[557] Test Float: ''%.0f'' == ''-3'' OK
[558] Test Float: ''%.1f'' == ''-3.6'' OK
[559] Test Float: ''%.2f'' == ''-3.62'' OK
[560] Test Float: ''%.3f'' == ''-3.625'' OK
[561] Test Float: ''%.6f'' == ''-3.625000'' OK
[562] Test Float: ''%.9f'' == ''-3.625000000'' OK
[563] Test Float: ''%.20f'' == ''-3.62500000000000000000'' OK
[564] Test Float: ''%0f'' == ''3.625000'' OK
[565] Test Float: ''%3f'' == ''3.625000'' OK
[566] Test Float: ''%9f'' == '' 3.625000'' OK
[567] Test Float: ''%20f'' == ''            3.625000'' OK
[568] Test Float: ''%0f'' == ''-3.625000'' OK
[569] Test Float: ''%3f'' == ''-3.625000'' OK
[570] Test Float: ''%9f'' == ''-3.625000'' OK
[571] Test Float: ''%20f'' == ''           -3.625000'' OK
[572] Test Float: ''%0.1f'' == ''3.6'' OK
[573] Test Float: ''%0.3f'' == ''3.625'' OK
[574] Test Float: ''%0.9f'' == ''3.625000000'' OK
[575] Test Float: ''%3.1f'' == ''3.6'' OK
[576] Test Float: ''%3.3f'' == ''3.625'' OK
[577] Test Float: ''%3.9f'' == ''3.625000000'' OK
[578] Test Float: ''%9.1f'' == ''      3.6'' OK
[579] Test Float: ''%9.3f'' == ''    3.625'' OK
[580] Test Float: ''%9.9f'' == ''3.625000000'' OK
[581] Test Float: ''%20.1f'' == ''                 3.6'' OK
[582] Test Float: ''%20.3f'' == ''               3.625'' OK
[583] Test Float: ''%20.9f'' == ''         3.625000000'' OK
[584] Test Float: ''%0f'' == ''3.625000'' OK
[585] Test Float: ''%-f'' == ''3.625000'' OK
[586] Test Float: ''%0-f'' == ''3.625000'' OK
[587] Test Float: ''%0.f'' == ''3'' OK
[588] Test Float: ''%0.0f'' == ''3'' OK
[589] Test Float: ''%0.1f'' == ''3.6'' OK
[590] Test Float: ''%0.3f'' == ''3.625'' OK
[591] Test Float: ''%0.6f'' == ''3.625000'' OK
[592] Test Float: ''%0.9f'' == ''3.625000000'' OK
[593] Test Float: ''%0.20f'' == ''3.62500000000000000000'' OK
[594] Test Float: ''%-.f'' == ''3'' OK
[595] Test Float: ''%-.0f'' == ''3'' OK
[596] Test Float: ''%-.1f'' == ''3.6'' OK
[597] Test Float: ''%-.3f'' == ''3.625'' OK
[598] Test Float: ''%-.6f'' == ''3.625000'' OK
[599] Test Float: ''%-.9f'' == ''3.625000000'' OK
[600] Test Float: ''%-.20f'' == ''3.62500000000000000000'' OK
[601] Test Float: ''%-0.f'' == ''3'' OK
[602] Test Float: ''%-0.0f'' == ''3'' OK
[603] Test Float: ''%-0.1f'' == ''3.6'' OK
[604] Test Float: ''%-0.3f'' == ''3.625'' OK
[605] Test Float: ''%-0.6f'' == ''3.625000'' OK
[606] Test Float: ''%-0.9f'' == ''3.625000000'' OK
[607] Test Float: ''%-0.20f'' == ''3.62500000000000000000'' OK
[608] Test Float: ''%00f'' == ''3.625000'' OK
[609] Test Float: ''%01f'' == ''3.625000'' OK
[610] Test Float: ''%03f'' == ''3.625000'' OK
[611] Test Float: ''%06f'' == ''3.625000'' OK
[612] Test Float: ''%09f'' == ''03.625000'' OK
[613] Test Float: ''%020f'' == ''0000000000003.625000'' OK
[614] Test Float: ''%-0f'' == ''3.625000'' OK
[615] Test Float: ''%-1f'' == ''3.625000'' OK
[616] Test Float: ''%-3f'' == ''3.625000'' OK
[617] Test Float: ''%-6f'' == ''3.625000'' OK
[618] Test Float: ''%-9f'' == ''3.625000 '' OK
[619] Test Float: ''%-20f'' == ''3.625000            '' OK
[620] Test Float: ''%-00f'' == ''3.625000'' OK
[621] Test Float: ''%-01f'' == ''3.625000'' OK
[622] Test Float: ''%-03f'' == ''3.625000'' OK
[623] Test Float: ''%-06f'' == ''3.625000'' OK
[624] Test Float: ''%-09f'' == ''3.625000 '' OK
[625] Test Float: ''%-020f'' == ''3.625000            '' OK
[626] Test Float: ''%00.f'' == ''3'' OK
[627] Test Float: ''%00.0f'' == ''3'' OK
[628] Test Float: ''%00.1f'' == ''3.6'' OK
[629] Test Float: ''%00.3f'' == ''3.625'' OK
[630] Test Float: ''%00.6f'' == ''3.625000'' OK
[631] Test Float: ''%00.9f'' == ''3.625000000'' OK
[632] Test Float: ''%00.20f'' == ''3.62500000000000000000'' OK
[633] Test Float: ''%01.f'' == ''3'' OK
[634] Test Float: ''%01.0f'' == ''3'' OK
[635] Test Float: ''%01.1f'' == ''3.6'' OK
[636] Test Float: ''%01.3f'' == ''3.625'' OK
[637] Test Float: ''%01.6f'' == ''3.625000'' OK
[638] Test Float: ''%01.9f'' == ''3.625000000'' OK
[639] Test Float: ''%01.20f'' == ''3.62500000000000000000'' OK
[640] Test Float: ''%03.f'' == ''003'' OK
[641] Test Float: ''%03.0f'' == ''003'' OK
[642] Test Float: ''%03.1f'' == ''3.6'' OK
[643] Test Float: ''%03.3f'' == ''3.625'' OK
[644] Test Float: ''%03.6f'' == ''3.625000'' OK
[645] Test Float: ''%03.9f'' == ''3.625000000'' OK
[646] Test Float: ''%03.20f'' == ''3.62500000000000000000'' OK
[647] Test Float: ''%06.f'' == ''000003'' OK
[648] Test Float: ''%06.0f'' == ''000003'' OK
[649] Test Float: ''%06.1f'' == ''0003.6'' OK
[650] Test Float: ''%06.3f'' == ''03.625'' OK
[651] Test Float: ''%06.6f'' == ''3.625000'' OK
[652] Test Float: ''%06.9f'' == ''3.625000000'' OK
[653] Test Float: ''%06.20f'' == ''3.62500000000000000000'' OK
[654] Test Float: ''%09.f'' == ''000000003'' OK
[655] Test Float: ''%09.0f'' == ''000000003'' OK
[656] Test Float: ''%09.1f'' == ''0000003.6'' OK
[657] Test Float: ''%09.3f'' == ''00003.625'' OK
[658] Test Float: ''%09.6f'' == ''03.625000'' OK
[659] Test Float: ''%09.9f'' == ''3.625000000'' OK
[660] Test Float: ''%09.20f'' == ''3.62500000000000000000'' OK
[661] Test Float: ''%020.f'' == ''00000000000000000003'' OK
[662] Test Float: ''%020.0f'' == ''00000000000000000003'' OK
[663] Test Float: ''%020.1f'' == ''000000000000000003.6'' OK
[664] Test Float: ''%020.3f'' == ''0000000000000003.625'' OK
[665] Test Float: ''%020.6f'' == ''0000000000003.625000'' OK
[666] Test Float: ''%020.9f'' == ''0000000003.625000000'' OK
[667] Test Float: ''%020.20f'' == ''3.62500000000000000000'' OK
[668] Test Float: ''%-0.f'' == ''3'' OK
[669] Test Float: ''%-0.0f'' == ''3'' OK
[670] Test Float: ''%-0.1f'' == ''3.6'' OK
[671] Test Float: ''%-0.3f'' == ''3.625'' OK
[672] Test Float: ''%-0.6f'' == ''3.625000'' OK
[673] Test Float: ''%-0.9f'' == ''3.625000000'' OK
[674] Test Float: ''%-0.20f'' == ''3.62500000000000000000'' OK
[675] Test Float: ''%-1.f'' == ''3'' OK
[676] Test Float: ''%-1.0f'' == ''3'' OK
[677] Test Float: ''%-1.1f'' == ''3.6'' OK
[678] Test Float: ''%-1.3f'' == ''3.625'' OK
[679] Test Float: ''%-1.6f'' == ''3.625000'' OK
[680] Test Float: ''%-1.9f'' == ''3.625000000'' OK
[681] Test Float: ''%-1.20f'' == ''3.62500000000000000000'' OK
[682] Test Float: ''%-3.f'' == ''3  '' OK
[683] Test Float: ''%-3.0f'' == ''3  '' OK
[684] Test Float: ''%-3.1f'' == ''3.6'' OK
[685] Test Float: ''%-3.3f'' == ''3.625'' OK
[686] Test Float: ''%-3.6f'' == ''3.625000'' OK
[687] Test Float: ''%-3.9f'' == ''3.625000000'' OK
[688] Test Float: ''%-3.20f'' == ''3.62500000000000000000'' OK
[689] Test Float: ''%-6.f'' == ''3     '' OK
[690] Test Float: ''%-6.0f'' == ''3     '' OK
[691] Test Float: ''%-6.1f'' == ''3.6   '' OK
[692] Test Float: ''%-6.3f'' == ''3.625 '' OK
[693] Test Float: ''%-6.6f'' == ''3.625000'' OK
[694] Test Float: ''%-6.9f'' == ''3.625000000'' OK
[695] Test Float: ''%-6.20f'' == ''3.62500000000000000000'' OK
[696] Test Float: ''%-9.f'' == ''3        '' OK
[697] Test Float: ''%-9.0f'' == ''3        '' OK
[698] Test Float: ''%-9.1f'' == ''3.6      '' OK
[699] Test Float: ''%-9.3f'' == ''3.625    '' OK
[700] Test Float: ''%-9.6f'' == ''3.625000 '' OK
[701] Test Float: ''%-9.9f'' == ''3.625000000'' OK
[702] Test Float: ''%-9.20f'' == ''3.62500000000000000000'' OK
[703] Test Float: ''%-20.f'' == ''3                   '' OK
[704] Test Float: ''%-20.0f'' == ''3                   '' OK
[705] Test Float: ''%-20.1f'' == ''3.6                 '' OK
[706] Test Float: ''%-20.3f'' == ''3.625               '' OK
[707] Test Float: ''%-20.6f'' == ''3.625000            '' OK
[708] Test Float: ''%-20.9f'' == ''3.625000000         '' OK
[709] Test Float: ''%-20.20f'' == ''3.62500000000000000000'' OK
[710] Test Float: ''%-00.f'' == ''3'' OK
[711] Test Float: ''%-00.0f'' == ''3'' OK
[712] Test Float: ''%-00.1f'' == ''3.6'' OK
[713] Test Float: ''%-00.3f'' == ''3.625'' OK
[714] Test Float: ''%-00.6f'' == ''3.625000'' OK
[715] Test Float: ''%-00.9f'' == ''3.625000000'' OK
[716] Test Float: ''%-00.20f'' == ''3.62500000000000000000'' OK
[717] Test Float: ''%-01.f'' == ''3'' OK
[718] Test Float: ''%-01.0f'' == ''3'' OK
[719] Test Float: ''%-01.1f'' == ''3.6'' OK
[720] Test Float: ''%-01.3f'' == ''3.625'' OK
[721] Test Float: ''%-01.6f'' == ''3.625000'' OK
[722] Test Float: ''%-01.9f'' == ''3.625000000'' OK
[723] Test Float: ''%-01.20f'' == ''3.62500000000000000000'' OK
[724] Test Float: ''%-03.f'' == ''3  '' OK
[725] Test Float: ''%-03.0f'' == ''3  '' OK
[726] Test Float: ''%-03.1f'' == ''3.6'' OK
[727] Test Float: ''%-03.3f'' == ''3.625'' OK
[728] Test Float: ''%-03.6f'' == ''3.625000'' OK
[729] Test Float: ''%-03.9f'' == ''3.625000000'' OK
[730] Test Float: ''%-03.20f'' == ''3.62500000000000000000'' OK
[731] Test Float: ''%-06.f'' == ''3     '' OK
[732] Test Float: ''%-06.0f'' == ''3     '' OK
[733] Test Float: ''%-06.1f'' == ''3.6   '' OK
[734] Test Float: ''%-06.3f'' == ''3.625 '' OK
[735] Test Float: ''%-06.6f'' == ''3.625000'' OK
[736] Test Float: ''%-06.9f'' == ''3.625000000'' OK
[737] Test Float: ''%-06.20f'' == ''3.62500000000000000000'' OK
[738] Test Float: ''%-09.f'' == ''3        '' OK
[739] Test Float: ''%-09.0f'' == ''3        '' OK
[740] Test Float: ''%-09.1f'' == ''3.6      '' OK
[741] Test Float: ''%-09.3f'' == ''3.625    '' OK
[742] Test Float: ''%-09.6f'' == ''3.625000 '' OK
[743] Test Float: ''%-09.9f'' == ''3.625000000'' OK
[744] Test Float: ''%-09.20f'' == ''3.62500000000000000000'' OK
[745] Test Float: ''%-020.f'' == ''3                   '' OK
[746] Test Float: ''%-020.0f'' == ''3                   '' OK
[747] Test Float: ''%-020.1f'' == ''3.6                 '' OK
[748] Test Float: ''%-020.3f'' == ''3.625               '' OK
[749] Test Float: ''%-020.6f'' == ''3.625000            '' OK
[750] Test Float: ''%-020.9f'' == ''3.625000000         '' OK
[751] Test Float: ''%-020.20f'' == ''3.62500000000000000000'' OK
[752] Test Float: ''%.f'' == ''3'' OK
[753] Test Float: ''%.-f'' == ''3'' OK
[754] Test Float: ''%.0-f'' == ''3'' OK
[755] Test Float: ''%0.f'' == ''3'' OK
[756] Test Float: ''%0.-f'' == ''3'' OK
[757] Test Float: ''%0.0-f'' == ''3'' OK
[758] Test Float: ''%.f'' == ''-3'' OK
[759] Test Float: ''%.-f'' == ''-3'' OK
[760] Test Float: ''%.0-f'' == ''-3'' OK
[761] Test Float: ''%0.f'' == ''-3'' OK
[762] Test Float: ''%0.-f'' == ''-3'' OK
[763] Test Float: ''%0.0-f'' == ''-3'' OK
[764] Test Float: ''%f'' == ''NaN'' OK
[765] Test Float: ''%f'' == ''Inf'' OK
[766] Test Float: ''%f'' == ''-Inf'' OK
[767] Test Float: ''%.0f'' == '''' OK
[768] Test Float: ''%.3f'' == ''NaN'' OK
[769] Test Float: ''%.9f'' == ''NaN'' OK
[770] Test Float: ''%.0f'' == '''' OK
[771] Test Float: ''%.3f'' == ''Inf'' OK
[772] Test Float: ''%.9f'' == ''Inf'' OK
[773] Test Float: ''%.0f'' == '''' OK
[774] Test Float: ''%.4f'' == ''-Inf'' OK
[775] Test Float: ''%.9f'' == ''-Inf'' OK
[776] Test Float: ''%0f'' == ''NaN'' OK
[777] Test Float: ''%3f'' == ''NaN'' OK
[778] Test Float: ''%9f'' == ''      NaN'' OK
[779] Test Float: ''%0f'' == ''Inf'' OK
[780] Test Float: ''%3f'' == ''Inf'' OK
[781] Test Float: ''%9f'' == ''      Inf'' OK
[782] Test Float: ''%0f'' == ''-Inf'' OK
[783] Test Float: ''%4f'' == ''-Inf'' OK
[784] Test Float: ''%9f'' == ''     -Inf'' OK
[785] Test Float: ''%0.0f'' == '''' OK
[786] Test Float: ''%0.3f'' == ''NaN'' OK
[787] Test Float: ''%0.9f'' == ''NaN'' OK
[788] Test Float: ''%3.0f'' == ''   '' OK
[789] Test Float: ''%3.3f'' == ''NaN'' OK
[790] Test Float: ''%3.9f'' == ''NaN'' OK
[791] Test Float: ''%9.0f'' == ''         '' OK
[792] Test Float: ''%9.3f'' == ''      NaN'' OK
[793] Test Float: ''%9.9f'' == ''      NaN'' OK
[794] Test Float: ''%0.0f'' == '''' OK
[795] Test Float: ''%0.3f'' == ''Inf'' OK
[796] Test Float: ''%0.9f'' == ''Inf'' OK
[797] Test Float: ''%3.0f'' == ''   '' OK
[798] Test Float: ''%3.3f'' == ''Inf'' OK
[799] Test Float: ''%3.9f'' == ''Inf'' OK
[800] Test Float: ''%9.0f'' == ''         '' OK
[801] Test Float: ''%9.3f'' == ''      Inf'' OK
[802] Test Float: ''%9.9f'' == ''      Inf'' OK
[803] Test Float: ''%0.0f'' == '''' OK
[804] Test Float: ''%0.4f'' == ''-Inf'' OK
[805] Test Float: ''%0.9f'' == ''-Inf'' OK
[806] Test Float: ''%4.0f'' == ''    '' OK
[807] Test Float: ''%4.4f'' == ''-Inf'' OK
[808] Test Float: ''%4.9f'' == ''-Inf'' OK
[809] Test Float: ''%9.0f'' == ''         '' OK
[810] Test Float: ''%9.4f'' == ''     -Inf'' OK
[811] Test Float: ''%9.9f'' == ''     -Inf'' OK
[812] Test Float: ''%0f'' == ''NaN'' OK
[813] Test Float: ''%-f'' == ''NaN'' OK
[814] Test Float: ''%0-f'' == ''NaN'' OK
[815] Test Float: ''%0f'' == ''Inf'' OK
[816] Test Float: ''%-f'' == ''Inf'' OK
[817] Test Float: ''%0-f'' == ''Inf'' OK
[818] Test Float: ''%0f'' == ''-Inf'' OK
[819] Test Float: ''%-f'' == ''-Inf'' OK
[820] Test Float: ''%0-f'' == ''-Inf'' OK
[821] Test Float: ''%0.f'' == '''' OK
[822] Test Float: ''%0.0f'' == '''' OK
[823] Test Float: ''%0.3f'' == ''NaN'' OK
[824] Test Float: ''%0.9f'' == ''NaN'' OK
[825] Test Float: ''%-.f'' == '''' OK
[826] Test Float: ''%-.0f'' == '''' OK
[827] Test Float: ''%-.3f'' == ''NaN'' OK
[828] Test Float: ''%-.9f'' == ''NaN'' OK
[829] Test Float: ''%-0.f'' == '''' OK
[830] Test Float: ''%-0.0f'' == '''' OK
[831] Test Float: ''%-0.3f'' == ''NaN'' OK
[832] Test Float: ''%-0.9f'' == ''NaN'' OK
[833] Test Float: ''%0.f'' == '''' OK
[834] Test Float: ''%0.0f'' == '''' OK
[835] Test Float: ''%0.3f'' == ''Inf'' OK
[836] Test Float: ''%0.9f'' == ''Inf'' OK
[837] Test Float: ''%-.f'' == '''' OK
[838] Test Float: ''%-.0f'' == '''' OK
[839] Test Float: ''%-.3f'' == ''Inf'' OK
[840] Test Float: ''%-.9f'' == ''Inf'' OK
[841] Test Float: ''%-0.f'' == '''' OK
[842] Test Float: ''%-0.0f'' == '''' OK
[843] Test Float: ''%-0.3f'' == ''Inf'' OK
[844] Test Float: ''%-0.9f'' == ''Inf'' OK
[845] Test Float: ''%0.f'' == '''' OK
[846] Test Float: ''%0.0f'' == '''' OK
[847] Test Float: ''%0.4f'' == ''-Inf'' OK
[848] Test Float: ''%0.9f'' == ''-Inf'' OK
[849] Test Float: ''%-.f'' == '''' OK
[850] Test Float: ''%-.0f'' == '''' OK
[851] Test Float: ''%-.4f'' == ''-Inf'' OK
[852] Test Float: ''%-.9f'' == ''-Inf'' OK
[853] Test Float: ''%-0.f'' == '''' OK
[854] Test Float: ''%-0.0f'' == '''' OK
[855] Test Float: ''%-0.4f'' == ''-Inf'' OK
[856] Test Float: ''%-0.9f'' == ''-Inf'' OK
[857] Test Float: ''%00f'' == ''NaN'' OK
[858] Test Float: ''%03f'' == ''NaN'' OK
[859] Test Float: ''%09f'' == ''      NaN'' OK
[860] Test Float: ''%-0f'' == ''NaN'' OK
[861] Test Float: ''%-3f'' == ''NaN'' OK
[862] Test Float: ''%-9f'' == ''NaN      '' OK
[863] Test Float: ''%-00f'' == ''NaN'' OK
[864] Test Float: ''%-03f'' == ''NaN'' OK
[865] Test Float: ''%-09f'' == ''NaN      '' OK
[866] Test Float: ''%00f'' == ''Inf'' OK
[867] Test Float: ''%03f'' == ''Inf'' OK
[868] Test Float: ''%09f'' == ''      Inf'' OK
[869] Test Float: ''%-0f'' == ''Inf'' OK
[870] Test Float: ''%-3f'' == ''Inf'' OK
[871] Test Float: ''%-9f'' == ''Inf      '' OK
[872] Test Float: ''%-00f'' == ''Inf'' OK
[873] Test Float: ''%-03f'' == ''Inf'' OK
[874] Test Float: ''%-09f'' == ''Inf      '' OK
[875] Test Float: ''%00f'' == ''-Inf'' OK
[876] Test Float: ''%04f'' == ''-Inf'' OK
[877] Test Float: ''%09f'' == ''     -Inf'' OK
[878] Test Float: ''%-0f'' == ''-Inf'' OK
[879] Test Float: ''%-4f'' == ''-Inf'' OK
[880] Test Float: ''%-9f'' == ''-Inf     '' OK
[881] Test Float: ''%-00f'' == ''-Inf'' OK
[882] Test Float: ''%-04f'' == ''-Inf'' OK
[883] Test Float: ''%-09f'' == ''-Inf     '' OK
[884] Test Float: ''%00.f'' == '''' OK
[885] Test Float: ''%00.0f'' == '''' OK
[886] Test Float: ''%00.3f'' == ''NaN'' OK
[887] Test Float: ''%00.9f'' == ''NaN'' OK
[888] Test Float: ''%03.f'' == ''   '' OK
[889] Test Float: ''%03.0f'' == ''   '' OK
[890] Test Float: ''%03.3f'' == ''NaN'' OK
[891] Test Float: ''%03.9f'' == ''NaN'' OK
[892] Test Float: ''%09.f'' == ''         '' OK
[893] Test Float: ''%09.0f'' == ''         '' OK
[894] Test Float: ''%09.3f'' == ''      NaN'' OK
[895] Test Float: ''%09.9f'' == ''      NaN'' OK
[896] Test Float: ''%00.f'' == '''' OK
[897] Test Float: ''%00.0f'' == '''' OK
[898] Test Float: ''%00.3f'' == ''Inf'' OK
[899] Test Float: ''%00.9f'' == ''Inf'' OK
[900] Test Float: ''%03.f'' == ''   '' OK
[901] Test Float: ''%03.0f'' == ''   '' OK
[902] Test Float: ''%03.3f'' == ''Inf'' OK
[903] Test Float: ''%03.9f'' == ''Inf'' OK
[904] Test Float: ''%09.f'' == ''         '' OK
[905] Test Float: ''%09.0f'' == ''         '' OK
[906] Test Float: ''%09.3f'' == ''      Inf'' OK
[907] Test Float: ''%09.9f'' == ''      Inf'' OK
[908] Test Float: ''%00.f'' == '''' OK
[909] Test Float: ''%00.0f'' == '''' OK
[910] Test Float: ''%00.4f'' == ''-Inf'' OK
[911] Test Float: ''%00.9f'' == ''-Inf'' OK
[912] Test Float: ''%04.f'' == ''    '' OK
[913] Test Float: ''%04.0f'' == ''    '' OK
[914] Test Float: ''%04.4f'' == ''-Inf'' OK
[915] Test Float: ''%04.9f'' == ''-Inf'' OK
[916] Test Float: ''%09.f'' == ''         '' OK
[917] Test Float: ''%09.0f'' == ''         '' OK
[918] Test Float: ''%09.4f'' == ''     -Inf'' OK
[919] Test Float: ''%09.9f'' == ''     -Inf'' OK
[920] Test Float: ''%-0.f'' == '''' OK
[921] Test Float: ''%-0.0f'' == '''' OK
[922] Test Float: ''%-0.3f'' == ''NaN'' OK
[923] Test Float: ''%-0.9f'' == ''NaN'' OK
[924] Test Float: ''%-3.f'' == ''   '' OK
[925] Test Float: ''%-3.0f'' == ''   '' OK
[926] Test Float: ''%-3.3f'' == ''NaN'' OK
[927] Test Float: ''%-3.9f'' == ''NaN'' OK
[928] Test Float: ''%-9.f'' == ''         '' OK
[929] Test Float: ''%-9.0f'' == ''         '' OK
[930] Test Float: ''%-9.3f'' == ''NaN      '' OK
[931] Test Float: ''%-9.9f'' == ''NaN      '' OK
[932] Test Float: ''%-0.f'' == '''' OK
[933] Test Float: ''%-0.0f'' == '''' OK
[934] Test Float: ''%-0.3f'' == ''Inf'' OK
[935] Test Float: ''%-0.9f'' == ''Inf'' OK
[936] Test Float: ''%-3.f'' == ''   '' OK
[937] Test Float: ''%-3.0f'' == ''   '' OK
[938] Test Float: ''%-3.3f'' == ''Inf'' OK
[939] Test Float: ''%-3.9f'' == ''Inf'' OK
[940] Test Float: ''%-9.f'' == ''         '' OK
[941] Test Float: ''%-9.0f'' == ''         '' OK
[942] Test Float: ''%-9.3f'' == ''Inf      '' OK
[943] Test Float: ''%-9.9f'' == ''Inf      '' OK
[944] Test Float: ''%-0.f'' == '''' OK
[945] Test Float: ''%-0.0f'' == '''' OK
[946] Test Float: ''%-0.4f'' == ''-Inf'' OK
[947] Test Float: ''%-0.9f'' == ''-Inf'' OK
[948] Test Float: ''%-4.f'' == ''    '' OK
[949] Test Float: ''%-4.0f'' == ''    '' OK
[950] Test Float: ''%-4.4f'' == ''-Inf'' OK
[951] Test Float: ''%-4.9f'' == ''-Inf'' OK
[952] Test Float: ''%-9.f'' == ''         '' OK
[953] Test Float: ''%-9.0f'' == ''         '' OK
[954] Test Float: ''%-9.4f'' == ''-Inf     '' OK
[955] Test Float: ''%-9.9f'' == ''-Inf     '' OK
[956] Test Float: ''%-00.f'' == '''' OK
[957] Test Float: ''%-00.0f'' == '''' OK
[958] Test Float: ''%-00.3f'' == ''NaN'' OK
[959] Test Float: ''%-00.9f'' == ''NaN'' OK
[960] Test Float: ''%-03.f'' == ''   '' OK
[961] Test Float: ''%-03.0f'' == ''   '' OK
[962] Test Float: ''%-03.3f'' == ''NaN'' OK
[963] Test Float: ''%-03.9f'' == ''NaN'' OK
[964] Test Float: ''%-09.f'' == ''         '' OK
[965] Test Float: ''%-09.0f'' == ''         '' OK
[966] Test Float: ''%-09.3f'' == ''NaN      '' OK
[967] Test Float: ''%-09.9f'' == ''NaN      '' OK
[968] Test Float: ''%-00.f'' == '''' OK
[969] Test Float: ''%-00.0f'' == '''' OK
[970] Test Float: ''%-00.3f'' == ''Inf'' OK
[971] Test Float: ''%-00.9f'' == ''Inf'' OK
[972] Test Float: ''%-03.f'' == ''   '' OK
[973] Test Float: ''%-03.0f'' == ''   '' OK
[974] Test Float: ''%-03.3f'' == ''Inf'' OK
[975] Test Float: ''%-03.9f'' == ''Inf'' OK
[976] Test Float: ''%-09.f'' == ''         '' OK
[977] Test Float: ''%-09.0f'' == ''         '' OK
[978] Test Float: ''%-09.3f'' == ''Inf      '' OK
[979] Test Float: ''%-09.9f'' == ''Inf      '' OK
[980] Test Float: ''%-00.f'' == '''' OK
[981] Test Float: ''%-00.0f'' == '''' OK
[982] Test Float: ''%-00.4f'' == ''-Inf'' OK
[983] Test Float: ''%-00.9f'' == ''-Inf'' OK
[984] Test Float: ''%-04.f'' == ''    '' OK
[985] Test Float: ''%-04.0f'' == ''    '' OK
[986] Test Float: ''%-04.4f'' == ''-Inf'' OK
[987] Test Float: ''%-04.9f'' == ''-Inf'' OK
[988] Test Float: ''%-09.f'' == ''         '' OK
[989] Test Float: ''%-09.0f'' == ''         '' OK
[990] Test Float: ''%-09.4f'' == ''-Inf     '' OK
[991] Test Float: ''%-09.9f'' == ''-Inf     '' OK
[992] Test Special: ''%N'' == ''Console'' OK
[993] Test Special: ''%L'' == ''Console<0><Console><Console>'' OK
[994] Test Special: ''%E'' == ''worldspawn'' OK
[995] Test Special: ''%.0N'' == '''' OK
[996] Test Special: ''%.3N'' == ''Con'' OK
[997] Test Special: ''%.7N'' == ''Console'' OK
[998] Test Special: ''%.20N'' == ''Console'' OK
[999] Test Special: ''%.0L'' == '''' OK
[1000] Test Special: ''%.3L'' == ''Con'' OK
[1001] Test Special: ''%.28L'' == ''Console<0><Console><Console>'' OK
[1002] Test Special: ''%.32L'' == ''Console<0><Console><Console>'' OK
[1003] Test Special: ''%.0E'' == '''' OK
[1004] Test Special: ''%.3E'' == ''wor'' OK
[1005] Test Special: ''%.10E'' == ''worldspawn'' OK
[1006] Test Special: ''%.20E'' == ''worldspawn'' OK
[1007] Test Special: ''%0N'' == ''Console'' OK
[1008] Test Special: ''%3N'' == ''Console'' OK
[1009] Test Special: ''%7N'' == ''Console'' OK
[1010] Test Special: ''%20N'' == ''             Console'' OK
[1011] Test Special: ''%0L'' == ''Console<0><Console><Console>'' OK
[1012] Test Special: ''%3L'' == ''Console<0><Console><Console>'' OK
[1013] Test Special: ''%28L'' == ''Console<0><Console><Console>'' OK
[1014] Test Special: ''%32L'' == ''    Console<0><Console><Console>'' OK
[1015] Test Special: ''%0E'' == ''worldspawn'' OK
[1016] Test Special: ''%3E'' == ''worldspawn'' OK
[1017] Test Special: ''%10E'' == ''worldspawn'' OK
[1018] Test Special: ''%20E'' == ''          worldspawn'' OK
[1019] Test Special: ''%0.3N'' == ''Con'' OK
[1020] Test Special: ''%0.7N'' == ''Console'' OK
[1021] Test Special: ''%0.20N'' == ''Console'' OK
[1022] Test Special: ''%3.3N'' == ''Con'' OK
[1023] Test Special: ''%3.7N'' == ''Console'' OK
[1024] Test Special: ''%3.20N'' == ''Console'' OK
[1025] Test Special: ''%7.3N'' == ''    Con'' OK
[1026] Test Special: ''%7.7N'' == ''Console'' OK
[1027] Test Special: ''%7.20N'' == ''Console'' OK
[1028] Test Special: ''%20.3N'' == ''                 Con'' OK
[1029] Test Special: ''%20.7N'' == ''             Console'' OK
[1030] Test Special: ''%20.20N'' == ''             Console'' OK
[1031] Test Special: ''%0.3L'' == ''Con'' OK
[1032] Test Special: ''%0.28L'' == ''Console<0><Console><Console>'' OK
[1033] Test Special: ''%0.32L'' == ''Console<0><Console><Console>'' OK
[1034] Test Special: ''%3.3L'' == ''Con'' OK
[1035] Test Special: ''%3.28L'' == ''Console<0><Console><Console>'' OK
[1036] Test Special: ''%3.32L'' == ''Console<0><Console><Console>'' OK
[1037] Test Special: ''%28.3L'' == ''                         Con'' OK
[1038] Test Special: ''%28.28L'' == ''Console<0><Console><Console>'' OK
[1039] Test Special: ''%28.32L'' == ''Console<0><Console><Console>'' OK
[1040] Test Special: ''%32.3L'' == ''                             Con'' OK
[1041] Test Special: ''%32.28L'' == ''    Console<0><Console><Console>'' OK
[1042] Test Special: ''%32.32L'' == ''    Console<0><Console><Console>'' OK
[1043] Test Special: ''%0.3E'' == ''wor'' OK
[1044] Test Special: ''%0.10E'' == ''worldspawn'' OK
[1045] Test Special: ''%0.20E'' == ''worldspawn'' OK
[1046] Test Special: ''%3.3E'' == ''wor'' OK
[1047] Test Special: ''%3.10E'' == ''worldspawn'' OK
[1048] Test Special: ''%3.20E'' == ''worldspawn'' OK
[1049] Test Special: ''%10.3E'' == ''       wor'' OK
[1050] Test Special: ''%10.10E'' == ''worldspawn'' OK
[1051] Test Special: ''%10.20E'' == ''worldspawn'' OK
[1052] Test Special: ''%20.3E'' == ''                 wor'' OK
[1053] Test Special: ''%20.10E'' == ''          worldspawn'' OK
[1054] Test Special: ''%20.20E'' == ''          worldspawn'' OK
[1055] Test Special: ''%0N'' == ''Console'' OK
[1056] Test Special: ''%-N'' == ''Console'' OK
[1057] Test Special: ''%0-N'' == ''Console'' OK
[1058] Test Special: ''%0L'' == ''Console<0><Console><Console>'' OK
[1059] Test Special: ''%-L'' == ''Console<0><Console><Console>'' OK
[1060] Test Special: ''%0-L'' == ''Console<0><Console><Console>'' OK
[1061] Test Special: ''%0E'' == ''worldspawn'' OK
[1062] Test Special: ''%-E'' == ''worldspawn'' OK
[1063] Test Special: ''%0-E'' == ''worldspawn'' OK
[1064] Test Special: ''%0.N'' == '''' OK
[1065] Test Special: ''%0.0N'' == '''' OK
[1066] Test Special: ''%0.3N'' == ''Con'' OK
[1067] Test Special: ''%0.7N'' == ''Console'' OK
[1068] Test Special: ''%0.20N'' == ''Console'' OK
[1069] Test Special: ''%-.N'' == '''' OK
[1070] Test Special: ''%-.0N'' == '''' OK
[1071] Test Special: ''%-.3N'' == ''Con'' OK
[1072] Test Special: ''%-.7N'' == ''Console'' OK
[1073] Test Special: ''%-.20N'' == ''Console'' OK
[1074] Test Special: ''%-0.N'' == '''' OK
[1075] Test Special: ''%-0.0N'' == '''' OK
[1076] Test Special: ''%-0.3N'' == ''Con'' OK
[1077] Test Special: ''%-0.7N'' == ''Console'' OK
[1078] Test Special: ''%-0.20N'' == ''Console'' OK
[1079] Test Special: ''%0.L'' == '''' OK
[1080] Test Special: ''%0.0L'' == '''' OK
[1081] Test Special: ''%0.3L'' == ''Con'' OK
[1082] Test Special: ''%0.28L'' == ''Console<0><Console><Console>'' OK
[1083] Test Special: ''%0.32L'' == ''Console<0><Console><Console>'' OK
[1084] Test Special: ''%-.L'' == '''' OK
[1085] Test Special: ''%-.0L'' == '''' OK
[1086] Test Special: ''%-.3L'' == ''Con'' OK
[1087] Test Special: ''%-.28L'' == ''Console<0><Console><Console>'' OK
[1088] Test Special: ''%-.32L'' == ''Console<0><Console><Console>'' OK
[1089] Test Special: ''%-0.L'' == '''' OK
[1090] Test Special: ''%-0.0L'' == '''' OK
[1091] Test Special: ''%-0.3L'' == ''Con'' OK
[1092] Test Special: ''%-0.28L'' == ''Console<0><Console><Console>'' OK
[1093] Test Special: ''%-0.32L'' == ''Console<0><Console><Console>'' OK
[1094] Test Special: ''%0.E'' == '''' OK
[1095] Test Special: ''%0.0E'' == '''' OK
[1096] Test Special: ''%0.3E'' == ''wor'' OK
[1097] Test Special: ''%0.10E'' == ''worldspawn'' OK
[1098] Test Special: ''%0.20E'' == ''worldspawn'' OK
[1099] Test Special: ''%-.E'' == '''' OK
[1100] Test Special: ''%-.0E'' == '''' OK
[1101] Test Special: ''%-.3E'' == ''wor'' OK
[1102] Test Special: ''%-.10E'' == ''worldspawn'' OK
[1103] Test Special: ''%-.20E'' == ''worldspawn'' OK
[1104] Test Special: ''%-0.E'' == '''' OK
[1105] Test Special: ''%-0.0E'' == '''' OK
[1106] Test Special: ''%-0.3E'' == ''wor'' OK
[1107] Test Special: ''%-0.10E'' == ''worldspawn'' OK
[1108] Test Special: ''%-0.20E'' == ''worldspawn'' OK
[1109] Test Special: ''%00N'' == ''Console'' OK
[1110] Test Special: ''%03N'' == ''Console'' OK
[1111] Test Special: ''%07N'' == ''Console'' OK
[1112] Test Special: ''%020N'' == ''             Console'' OK
[1113] Test Special: ''%-0N'' == ''Console'' OK
[1114] Test Special: ''%-3N'' == ''Console'' OK
[1115] Test Special: ''%-7N'' == ''Console'' OK
[1116] Test Special: ''%-20N'' == ''Console             '' OK
[1117] Test Special: ''%-00N'' == ''Console'' OK
[1118] Test Special: ''%-03N'' == ''Console'' OK
[1119] Test Special: ''%-07N'' == ''Console'' OK
[1120] Test Special: ''%-020N'' == ''Console             '' OK
[1121] Test Special: ''%00L'' == ''Console<0><Console><Console>'' OK
[1122] Test Special: ''%03L'' == ''Console<0><Console><Console>'' OK
[1123] Test Special: ''%028L'' == ''Console<0><Console><Console>'' OK
[1124] Test Special: ''%032L'' == ''    Console<0><Console><Console>'' OK
[1125] Test Special: ''%-0L'' == ''Console<0><Console><Console>'' OK
[1126] Test Special: ''%-3L'' == ''Console<0><Console><Console>'' OK
[1127] Test Special: ''%-28L'' == ''Console<0><Console><Console>'' OK
[1128] Test Special: ''%-32L'' == ''Console<0><Console><Console>    '' OK
[1129] Test Special: ''%-00L'' == ''Console<0><Console><Console>'' OK
[1130] Test Special: ''%-03L'' == ''Console<0><Console><Console>'' OK
[1131] Test Special: ''%-28L'' == ''Console<0><Console><Console>'' OK
[1132] Test Special: ''%-032L'' == ''Console<0><Console><Console>    '' OK
[1133] Test Special: ''%00E'' == ''worldspawn'' OK
[1134] Test Special: ''%03E'' == ''worldspawn'' OK
[1135] Test Special: ''%010E'' == ''worldspawn'' OK
[1136] Test Special: ''%020E'' == ''          worldspawn'' OK
[1137] Test Special: ''%-0E'' == ''worldspawn'' OK
[1138] Test Special: ''%-3E'' == ''worldspawn'' OK
[1139] Test Special: ''%-10E'' == ''worldspawn'' OK
[1140] Test Special: ''%-20E'' == ''worldspawn          '' OK
[1141] Test Special: ''%-00E'' == ''worldspawn'' OK
[1142] Test Special: ''%-03E'' == ''worldspawn'' OK
[1143] Test Special: ''%-10E'' == ''worldspawn'' OK
[1144] Test Special: ''%-020E'' == ''worldspawn          '' OK
[1145] Test Special: ''%00.0N'' == '''' OK
[1146] Test Special: ''%00.3N'' == ''Con'' OK
[1147] Test Special: ''%00.7N'' == ''Console'' OK
[1148] Test Special: ''%00.20N'' == ''Console'' OK
[1149] Test Special: ''%03.0N'' == ''   '' OK
[1150] Test Special: ''%03.3N'' == ''Con'' OK
[1151] Test Special: ''%03.7N'' == ''Console'' OK
[1152] Test Special: ''%03.20N'' == ''Console'' OK
[1153] Test Special: ''%07.0N'' == ''       '' OK
[1154] Test Special: ''%07.3N'' == ''    Con'' OK
[1155] Test Special: ''%07.7N'' == ''Console'' OK
[1156] Test Special: ''%07.20N'' == ''Console'' OK
[1157] Test Special: ''%020.0N'' == ''                    '' OK
[1158] Test Special: ''%020.3N'' == ''                 Con'' OK
[1159] Test Special: ''%020.7N'' == ''             Console'' OK
[1160] Test Special: ''%020.20N'' == ''             Console'' OK
[1161] Test Special: ''%-0.0N'' == '''' OK
[1162] Test Special: ''%-0.3N'' == ''Con'' OK
[1163] Test Special: ''%-0.7N'' == ''Console'' OK
[1164] Test Special: ''%-0.20N'' == ''Console'' OK
[1165] Test Special: ''%-3.0N'' == ''   '' OK
[1166] Test Special: ''%-3.3N'' == ''Con'' OK
[1167] Test Special: ''%-3.7N'' == ''Console'' OK
[1168] Test Special: ''%-3.20N'' == ''Console'' OK
[1169] Test Special: ''%-7.0N'' == ''       '' OK
[1170] Test Special: ''%-7.3N'' == ''Con    '' OK
[1171] Test Special: ''%-7.7N'' == ''Console'' OK
[1172] Test Special: ''%-7.20N'' == ''Console'' OK
[1173] Test Special: ''%-20.0N'' == ''                    '' OK
[1174] Test Special: ''%-20.3N'' == ''Con                 '' OK
[1175] Test Special: ''%-20.7N'' == ''Console             '' OK
[1176] Test Special: ''%-20.20N'' == ''Console             '' OK
[1177] Test Special: ''%-00.0N'' == '''' OK
[1178] Test Special: ''%-00.3N'' == ''Con'' OK
[1179] Test Special: ''%-00.7N'' == ''Console'' OK
[1180] Test Special: ''%-00.20N'' == ''Console'' OK
[1181] Test Special: ''%-03.0N'' == ''   '' OK
[1182] Test Special: ''%-03.3N'' == ''Con'' OK
[1183] Test Special: ''%-03.7N'' == ''Console'' OK
[1184] Test Special: ''%-03.20N'' == ''Console'' OK
[1185] Test Special: ''%-07.0N'' == ''       '' OK
[1186] Test Special: ''%-07.3N'' == ''Con    '' OK
[1187] Test Special: ''%-07.7N'' == ''Console'' OK
[1188] Test Special: ''%-07.20N'' == ''Console'' OK
[1189] Test Special: ''%-020.0N'' == ''                    '' OK
[1190] Test Special: ''%-020.3N'' == ''Con                 '' OK
[1191] Test Special: ''%-020.7N'' == ''Console             '' OK
[1192] Test Special: ''%-020.20N'' == ''Console             '' OK
[1193] Test Special: ''%00.0N'' == '''' OK
[1194] Test Special: ''%00.3N'' == ''Con'' OK
[1195] Test Special: ''%00.7N'' == ''Console'' OK
[1196] Test Special: ''%00.20N'' == ''Console'' OK
[1197] Test Special: ''%03.0N'' == ''   '' OK
[1198] Test Special: ''%03.3N'' == ''Con'' OK
[1199] Test Special: ''%03.7N'' == ''Console'' OK
[1200] Test Special: ''%03.20N'' == ''Console'' OK
[1201] Test Special: ''%07.0N'' == ''       '' OK
[1202] Test Special: ''%07.3N'' == ''    Con'' OK
[1203] Test Special: ''%07.7N'' == ''Console'' OK
[1204] Test Special: ''%07.20N'' == ''Console'' OK
[1205] Test Special: ''%020.0N'' == ''                    '' OK
[1206] Test Special: ''%020.3N'' == ''                 Con'' OK
[1207] Test Special: ''%020.7N'' == ''             Console'' OK
[1208] Test Special: ''%020.20N'' == ''             Console'' OK
[1209] Test Special: ''%-0.0N'' == '''' OK
[1210] Test Special: ''%-0.3N'' == ''Con'' OK
[1211] Test Special: ''%-0.7N'' == ''Console'' OK
[1212] Test Special: ''%-0.20N'' == ''Console'' OK
[1213] Test Special: ''%-3.0N'' == ''   '' OK
[1214] Test Special: ''%-3.3N'' == ''Con'' OK
[1215] Test Special: ''%-3.7N'' == ''Console'' OK
[1216] Test Special: ''%-3.20N'' == ''Console'' OK
[1217] Test Special: ''%-7.0N'' == ''       '' OK
[1218] Test Special: ''%-7.3N'' == ''Con    '' OK
[1219] Test Special: ''%-7.7N'' == ''Console'' OK
[1220] Test Special: ''%-7.20N'' == ''Console'' OK
[1221] Test Special: ''%-20.0N'' == ''                    '' OK
[1222] Test Special: ''%-20.3N'' == ''Con                 '' OK
[1223] Test Special: ''%-20.7N'' == ''Console             '' OK
[1224] Test Special: ''%-20.20N'' == ''Console             '' OK
[1225] Test Special: ''%-00.0N'' == '''' OK
[1226] Test Special: ''%-00.3N'' == ''Con'' OK
[1227] Test Special: ''%-00.7N'' == ''Console'' OK
[1228] Test Special: ''%-00.20N'' == ''Console'' OK
[1229] Test Special: ''%-03.0N'' == ''   '' OK
[1230] Test Special: ''%-03.3N'' == ''Con'' OK
[1231] Test Special: ''%-03.7N'' == ''Console'' OK
[1232] Test Special: ''%-03.20N'' == ''Console'' OK
[1233] Test Special: ''%-07.0N'' == ''       '' OK
[1234] Test Special: ''%-07.3N'' == ''Con    '' OK
[1235] Test Special: ''%-07.7N'' == ''Console'' OK
[1236] Test Special: ''%-07.20N'' == ''Console'' OK
[1237] Test Special: ''%-020.0N'' == ''                    '' OK
[1238] Test Special: ''%-020.3N'' == ''Con                 '' OK
[1239] Test Special: ''%-020.7N'' == ''Console             '' OK
[1240] Test Special: ''%-020.20N'' == ''Console             '' OK
[1241] Test Special: ''%00.0L'' == '''' OK
[1242] Test Special: ''%00.3L'' == ''Con'' OK
[1243] Test Special: ''%00.28L'' == ''Console<0><Console><Console>'' OK
[1244] Test Special: ''%00.32L'' == ''Console<0><Console><Console>'' OK
[1245] Test Special: ''%03.0L'' == ''   '' OK
[1246] Test Special: ''%03.3L'' == ''Con'' OK
[1247] Test Special: ''%03.28L'' == ''Console<0><Console><Console>'' OK
[1248] Test Special: ''%03.32L'' == ''Console<0><Console><Console>'' OK
[1249] Test Special: ''%028.0L'' == ''                            '' OK
[1250] Test Special: ''%028.3L'' == ''                         Con'' OK
[1251] Test Special: ''%028.28L'' == ''Console<0><Console><Console>'' OK
[1252] Test Special: ''%028.32L'' == ''Console<0><Console><Console>'' OK
[1253] Test Special: ''%032.0L'' == ''                                '' OK
[1254] Test Special: ''%032.3L'' == ''                             Con'' OK
[1255] Test Special: ''%032.28L'' == ''    Console<0><Console><Console>'' OK
[1256] Test Special: ''%032.32L'' == ''    Console<0><Console><Console>'' OK
[1257] Test Special: ''%-0.0L'' == '''' OK
[1258] Test Special: ''%-0.3L'' == ''Con'' OK
[1259] Test Special: ''%-0.28L'' == ''Console<0><Console><Console>'' OK
[1260] Test Special: ''%-0.32L'' == ''Console<0><Console><Console>'' OK
[1261] Test Special: ''%-3.0L'' == ''   '' OK
[1262] Test Special: ''%-3.3L'' == ''Con'' OK
[1263] Test Special: ''%-3.28L'' == ''Console<0><Console><Console>'' OK
[1264] Test Special: ''%-3.32L'' == ''Console<0><Console><Console>'' OK
[1265] Test Special: ''%-28.0L'' == ''                            '' OK
[1266] Test Special: ''%-28.3L'' == ''Con                         '' OK
[1267] Test Special: ''%-28.28L'' == ''Console<0><Console><Console>'' OK
[1268] Test Special: ''%-28.32L'' == ''Console<0><Console><Console>'' OK
[1269] Test Special: ''%-32.0L'' == ''                                '' OK
[1270] Test Special: ''%-32.3L'' == ''Con                             '' OK
[1271] Test Special: ''%-32.28L'' == ''Console<0><Console><Console>    '' OK
[1272] Test Special: ''%-32.32L'' == ''Console<0><Console><Console>    '' OK
[1273] Test Special: ''%-00.0L'' == '''' OK
[1274] Test Special: ''%-00.3L'' == ''Con'' OK
[1275] Test Special: ''%-00.28L'' == ''Console<0><Console><Console>'' OK
[1276] Test Special: ''%-00.32L'' == ''Console<0><Console><Console>'' OK
[1277] Test Special: ''%-03.0L'' == ''   '' OK
[1278] Test Special: ''%-03.3L'' == ''Con'' OK
[1279] Test Special: ''%-03.28L'' == ''Console<0><Console><Console>'' OK
[1280] Test Special: ''%-03.32L'' == ''Console<0><Console><Console>'' OK
[1281] Test Special: ''%-028.0L'' == ''                            '' OK
[1282] Test Special: ''%-028.3L'' == ''Con                         '' OK
[1283] Test Special: ''%-028.28L'' == ''Console<0><Console><Console>'' OK
[1284] Test Special: ''%-028.32L'' == ''Console<0><Console><Console>'' OK
[1285] Test Special: ''%-032.0L'' == ''                                '' OK
[1286] Test Special: ''%-032.3L'' == ''Con                             '' OK
[1287] Test Special: ''%-032.28L'' == ''Console<0><Console><Console>    '' OK
[1288] Test Special: ''%-032.32L'' == ''Console<0><Console><Console>    '' OK
[1289] Test Special: ''%00.0E'' == '''' OK
[1290] Test Special: ''%00.3E'' == ''wor'' OK
[1291] Test Special: ''%00.10E'' == ''worldspawn'' OK
[1292] Test Special: ''%00.20E'' == ''worldspawn'' OK
[1293] Test Special: ''%03.0E'' == ''   '' OK
[1294] Test Special: ''%03.3E'' == ''wor'' OK
[1295] Test Special: ''%03.10E'' == ''worldspawn'' OK
[1296] Test Special: ''%03.20E'' == ''worldspawn'' OK
[1297] Test Special: ''%010.0E'' == ''          '' OK
[1298] Test Special: ''%010.3E'' == ''       wor'' OK
[1299] Test Special: ''%010.10E'' == ''worldspawn'' OK
[1300] Test Special: ''%010.20E'' == ''worldspawn'' OK
[1301] Test Special: ''%020.0E'' == ''                    '' OK
[1302] Test Special: ''%020.3E'' == ''                 wor'' OK
[1303] Test Special: ''%020.10E'' == ''          worldspawn'' OK
[1304] Test Special: ''%020.20E'' == ''          worldspawn'' OK
[1305] Test Special: ''%-0.0E'' == '''' OK
[1306] Test Special: ''%-0.3E'' == ''wor'' OK
[1307] Test Special: ''%-0.10E'' == ''worldspawn'' OK
[1308] Test Special: ''%-0.20E'' == ''worldspawn'' OK
[1309] Test Special: ''%-3.0E'' == ''   '' OK
[1310] Test Special: ''%-3.3E'' == ''wor'' OK
[1311] Test Special: ''%-3.10E'' == ''worldspawn'' OK
[1312] Test Special: ''%-3.20E'' == ''worldspawn'' OK
[1313] Test Special: ''%-10.0E'' == ''          '' OK
[1314] Test Special: ''%-10.3E'' == ''wor       '' OK
[1315] Test Special: ''%-10.10E'' == ''worldspawn'' OK
[1316] Test Special: ''%-10.20E'' == ''worldspawn'' OK
[1317] Test Special: ''%-20.0E'' == ''                    '' OK
[1318] Test Special: ''%-20.3E'' == ''wor                 '' OK
[1319] Test Special: ''%-20.10E'' == ''worldspawn          '' OK
[1320] Test Special: ''%-20.20E'' == ''worldspawn          '' OK
[1321] Test Special: ''%-00.0E'' == '''' OK
[1322] Test Special: ''%-00.3E'' == ''wor'' OK
[1323] Test Special: ''%-00.10E'' == ''worldspawn'' OK
[1324] Test Special: ''%-00.20E'' == ''worldspawn'' OK
[1325] Test Special: ''%-03.0E'' == ''   '' OK
[1326] Test Special: ''%-03.3E'' == ''wor'' OK
[1327] Test Special: ''%-03.10E'' == ''worldspawn'' OK
[1328] Test Special: ''%-03.20E'' == ''worldspawn'' OK
[1329] Test Special: ''%-010.0E'' == ''          '' OK
[1330] Test Special: ''%-010.3E'' == ''wor       '' OK
[1331] Test Special: ''%-010.10E'' == ''worldspawn'' OK
[1332] Test Special: ''%-010.20E'' == ''worldspawn'' OK
[1333] Test Special: ''%-020.0E'' == ''                    '' OK
[1334] Test Special: ''%-020.3E'' == ''wor                 '' OK
[1335] Test Special: ''%-020.10E'' == ''worldspawn          '' OK
[1336] Test Special: ''%-020.20E'' == ''worldspawn          '' OK
[1337] Test Special: '%E' == 'worldspawn' OK
[1338] Test Special: '%E' == 'sdk_team_manager' OK
[1339] Test Special: '%E' == 'sdk_team_manager' OK
[1340] Test Special: '%E' == 'nmrih_turnedzombie_watcher' OK
[1341] Test Special: '%E' == 'vote_controller' OK
[1342] Test Special: '%E' == 'info_player_nmrih_temp' OK
[1343] Test Special: '%E' == 'nmrih_overlord' OK
[1344] Test Special: '%E' == 'soundent' OK
[1345] Test Special: '%E' == 'sdk_player_manager' OK
[1346] Test Special: '%E' == 'nmrih_objective_gamerules' OK
[1347] Test Special: '%E' == 'ai_network' OK
[1348] Test Special: '%E' == 'scene_manager' OK
[1349] Test Special: '%E' == 'func_breakable' OK
[1350] Test Special: '%E' == 'trigger_once' OK
[1351] Test Special: '%E' == 'trigger_once' OK
[1352] Test Special: '%E' == 'light' OK
[1353] Test Special: '%E' == 'func_illusionary' OK
[1354] Test Special: '%E' == 'func_illusionary' OK
[1355] Test Special: '%E' == 'func_illusionary' OK
[1356] Test Special: '%E' == 'infodecal' OK
[1357] Test Special: '%E' == 'prop_dynamic' OK
[1358] Test Special: '%E' == 'prop_dynamic' OK
[1359] Test Special: '%E' == 'filter_multi' OK
[1360] Test Special: '%E' == 'point_template' OK
[1361] Test Special: '%E' == 'filter_activator_name' OK
[1362] Test Special: '%E' == 'filter_activator_name' OK
[1363] Test Special: '%E' == 'filter_activator_name' OK
[1364] Test Special: '%E' == 'point_template' OK
[1365] Test Special: '%E' == 'logic_auto' OK
[1366] Test Special: '%E' == 'logic_relay' OK
[1367] Test Special: '%E' == 'logic_case' OK
[1368] Test Special: '%E' == 'point_template' OK
[1369] Test Special: '%E' == 'point_template' OK
[1370] Test Special: '%E' == 'point_template' OK
[1371] Test Special: '%E' == 'ambient_generic' OK
[1372] Test Special: '%E' == 'trigger_infect' OK
[1373] Test Special: '%E' == 'point_template' OK
[1374] Test Special: '%E' == 'info_npc_spawn_destination' OK
[1375] Test Special: '%E' == 'env_sprite' OK
[1376] Test Special: '%E' == 'env_sprite' OK
[1377] Test Special: '%E' == 'prop_dynamic' OK
[1378] Test Special: '%E' == 'func_door_rotating' OK
[1379] Test Special: '%E' == 'prop_dynamic' OK
[1380] Test Special: '%E' == 'prop_dynamic' OK
[1381] Test Special: '%E' == 'prop_dynamic' OK
[1382] Test Special: '%E' == 'prop_dynamic' OK
[1383] Test Special: '%E' == 'func_door_rotating' OK
[1384] Test Special: '%E' == 'prop_dynamic' OK
[1385] Test Special: '%E' == 'prop_dynamic' OK
[1386] Test Special: '%E' == 'prop_dynamic' OK
[1387] Test Special: '%E' == 'prop_dynamic' OK
[1388] Test Special: '%E' == 'prop_dynamic' OK
[1389] Test Special: '%E' == 'func_door_rotating' OK
[1390] Test Special: '%E' == 'prop_dynamic' OK
[1391] Test Special: '%E' == 'prop_dynamic' OK
[1392] Test Special: '%E' == 'prop_dynamic' OK
[1393] Test Special: '%E' == 'prop_dynamic' OK
[1394] Test Special: '%E' == 'prop_dynamic' OK
[1395] Test Special: '%E' == 'func_breakable' OK
[1396] Test Special: '%E' == 'func_breakable' OK
[1397] Test Special: '%E' == 'func_breakable' OK
[1398] Test Special: '%E' == 'func_breakable' OK
[1399] Test Special: '%E' == 'func_breakable' OK
[1400] Test Special: '%E' == 'func_breakable' OK
[1401] Test Special: '%E' == 'func_breakable' OK
[1402] Test Special: '%E' == 'func_illusionary' OK
[1403] Test Special: '%E' == 'logic_relay' OK
[1404] Test Special: '%E' == 'env_spark' OK
[1405] Test Special: '%E' == 'trigger_once' OK
[1406] Test Special: '%E' == 'filter_activator_name' OK
[1407] Test Special: '%E' == 'func_button' OK
[1408] Test Special: '%E' == 'point_spotlight' OK
[1409] Test Special: '%E' == 'point_spotlight' OK
[1410] Test Special: '%E' == 'env_sprite' OK
[1411] Test Special: '%E' == 'env_sprite' OK
[1412] Test Special: '%E' == 'env_sprite' OK
[1413] Test Special: '%E' == 'env_sprite' OK
[1414] Test Special: '%E' == 'env_sprite' OK
[1415] Test Special: '%E' == 'env_sprite' OK
[1416] Test Special: '%E' == 'env_sprite' OK
[1417] Test Special: '%E' == 'env_sprite' OK
[1418] Test Special: '%E' == 'env_sprite' OK
[1419] Test Special: '%E' == 'env_sprite' OK
[1420] Test Special: '%E' == 'info_target' OK
[1421] Test Special: '%E' == 'env_soundscape' OK
[1422] Test Special: '%E' == 'info_target' OK
[1423] Test Special: '%E' == 'env_soundscape' OK
[1424] Test Special: '%E' == 'info_target' OK
[1425] Test Special: '%E' == 'env_soundscape' OK
[1426] Test Special: '%E' == 'info_target' OK
[1427] Test Special: '%E' == 'env_soundscape' OK
[1428] Test Special: '%E' == 'info_target' OK
[1429] Test Special: '%E' == 'env_soundscape' OK
[1430] Test Special: '%E' == 'info_target' OK
[1431] Test Special: '%E' == 'env_soundscape' OK
[1432] Test Special: '%E' == 'info_target' OK
[1433] Test Special: '%E' == 'env_soundscape' OK
[1434] Test Special: '%E' == 'move_rope' OK
[1435] Test Special: '%E' == 'move_rope' OK
[1436] Test Special: '%E' == 'keyframe_rope' OK
[1437] Test Special: '%E' == 'keyframe_rope' OK
[1438] Test Special: '%E' == 'keyframe_rope' OK
[1439] Test Special: '%E' == 'keyframe_rope' OK
[1440] Test Special: '%E' == 'keyframe_rope' OK
[1441] Test Special: '%E' == 'keyframe_rope' OK
[1442] Test Special: '%E' == 'keyframe_rope' OK
[1443] Test Special: '%E' == 'keyframe_rope' OK
[1444] Test Special: '%E' == 'keyframe_rope' OK
[1445] Test Special: '%E' == 'keyframe_rope' OK
[1446] Test Special: '%E' == 'keyframe_rope' OK
[1447] Test Special: '%E' == 'keyframe_rope' OK
[1448] Test Special: '%E' == 'keyframe_rope' OK
[1449] Test Special: '%E' == 'keyframe_rope' OK
[1450] Test Special: '%E' == 'keyframe_rope' OK
[1451] Test Special: '%E' == 'keyframe_rope' OK
[1452] Test Special: '%E' == 'keyframe_rope' OK
[1453] Test Special: '%E' == 'keyframe_rope' OK
[1454] Test Special: '%E' == 'keyframe_rope' OK
[1455] Test Special: '%E' == 'keyframe_rope' OK
[1456] Test Special: '%E' == 'keyframe_rope' OK
[1457] Test Special: '%E' == 'keyframe_rope' OK
[1458] Test Special: '%E' == 'keyframe_rope' OK
[1459] Test Special: '%E' == 'keyframe_rope' OK
[1460] Test Special: '%E' == 'keyframe_rope' OK
[1461] Test Special: '%E' == 'keyframe_rope' OK
[1462] Test Special: '%E' == 'keyframe_rope' OK
[1463] Test Special: '%E' == 'keyframe_rope' OK
[1464] Test Special: '%E' == 'keyframe_rope' OK
[1465] Test Special: '%E' == 'keyframe_rope' OK
[1466] Test Special: '%E' == 'keyframe_rope' OK
[1467] Test Special: '%E' == 'keyframe_rope' OK
[1468] Test Special: '%E' == 'move_rope' OK
[1469] Test Special: '%E' == 'move_rope' OK
[1470] Test Special: '%E' == 'keyframe_rope' OK
[1471] Test Special: '%E' == 'keyframe_rope' OK
[1472] Test Special: '%E' == 'keyframe_rope' OK
[1473] Test Special: '%E' == 'keyframe_rope' OK
[1474] Test Special: '%E' == 'keyframe_rope' OK
[1475] Test Special: '%E' == 'keyframe_rope' OK
[1476] Test Special: '%E' == 'keyframe_rope' OK
[1477] Test Special: '%E' == 'keyframe_rope' OK
[1478] Test Special: '%E' == 'keyframe_rope' OK
[1479] Test Special: '%E' == 'keyframe_rope' OK
[1480] Test Special: '%E' == 'keyframe_rope' OK
[1481] Test Special: '%E' == 'keyframe_rope' OK
[1482] Test Special: '%E' == 'keyframe_rope' OK
[1483] Test Special: '%E' == 'keyframe_rope' OK
[1484] Test Special: '%E' == 'move_rope' OK
[1485] Test Special: '%E' == 'move_rope' OK
[1486] Test Special: '%E' == 'keyframe_rope' OK
[1487] Test Special: '%E' == 'keyframe_rope' OK
[1488] Test Special: '%E' == 'keyframe_rope' OK
[1489] Test Special: '%E' == 'keyframe_rope' OK
[1490] Test Special: '%E' == 'keyframe_rope' OK
[1491] Test Special: '%E' == 'keyframe_rope' OK
[1492] Test Special: '%E' == 'keyframe_rope' OK
[1493] Test Special: '%E' == 'env_sprite' OK
[1494] Test Special: '%E' == 'env_sprite' OK
[1495] Test Special: '%E' == 'env_sprite' OK
[1496] Test Special: '%E' == 'nmrih_barricade' OK
[1497] Test Special: '%E' == 'nmrih_barricade' OK
[1498] Test Special: '%E' == 'nmrih_barricade' OK
[1499] Test Special: '%E' == 'func_breakable' OK
[1500] Test Special: '%E' == 'prop_dynamic' OK
[1501] Test Special: '%E' == 'prop_physics' OK
[1502] Test Special: '%E' == 'prop_physics' OK
[1503] Test Special: '%E' == 'prop_physics' OK
[1504] Test Special: '%E' == 'func_brush' OK
[1505] Test Special: '%E' == 'prop_physics' OK
[1506] Test Special: '%E' == 'prop_physics' OK
[1507] Test Special: '%E' == 'prop_physics' OK
[1508] Test Special: '%E' == 'point_template' OK
[1509] Test Special: '%E' == 'point_template' OK
[1510] Test Special: '%E' == 'filter_activator_name' OK
[1511] Test Special: '%E' == 'nmrih_extract_point' OK
[1512] Test Special: '%E' == 'point_template' OK
[1513] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1514] Test Special: '%E' == 'ambient_generic' OK
[1515] Test Special: '%E' == 'ambient_generic' OK
[1516] Test Special: '%E' == 'ambient_generic' OK
[1517] Test Special: '%E' == 'ambient_generic' OK
[1518] Test Special: '%E' == 'random_spawner' OK
[1519] Test Special: '%E' == 'func_clip_vphysics' OK
[1520] Test Special: '%E' == 'keyframe_rope' OK
[1521] Test Special: '%E' == 'func_clip_vphysics' OK
[1522] Test Special: '%E' == 'func_breakable' OK
[1523] Test Special: '%E' == 'prop_dynamic' OK
[1524] Test Special: '%E' == 'light' OK
[1525] Test Special: '%E' == 'light' OK
[1526] Test Special: '%E' == 'light' OK
[1527] Test Special: '%E' == 'tool_barricade' OK
[1528] Test Special: '%E' == 'ambient_generic' OK
[1529] Test Special: '%E' == 'func_brush' OK
[1530] Test Special: '%E' == 'prop_dynamic' OK
[1531] Test Special: '%E' == 'prop_dynamic' OK
[1532] Test Special: '%E' == 'random_spawner' OK
[1533] Test Special: '%E' == 'info_particle_system' OK
[1534] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1535] Test Special: '%E' == 'prop_dynamic' OK
[1536] Test Special: '%E' == 'prop_dynamic' OK
[1537] Test Special: '%E' == 'logic_auto' OK
[1538] Test Special: '%E' == 'prop_dynamic' OK
[1539] Test Special: '%E' == 'prop_dynamic' OK
[1540] Test Special: '%E' == 'func_brush' OK
[1541] Test Special: '%E' == 'info_player_nmrih' OK
[1542] Test Special: '%E' == 'info_player_nmrih' OK
[1543] Test Special: '%E' == 'info_player_nmrih' OK
[1544] Test Special: '%E' == 'info_player_nmrih' OK
[1545] Test Special: '%E' == 'info_player_nmrih' OK
[1546] Test Special: '%E' == 'info_player_nmrih' OK
[1547] Test Special: '%E' == 'info_player_nmrih' OK
[1548] Test Special: '%E' == 'info_player_nmrih' OK
[1549] Test Special: '%E' == 'func_door' OK
[1550] Test Special: '%E' == 'phys_lengthconstraint' OK
[1551] Test Special: '%E' == 'trigger_once' OK
[1552] Test Special: '%E' == 'prop_dynamic' OK
[1553] Test Special: '%E' == 'filter_activator_name' OK
[1554] Test Special: '%E' == 'func_clip_vphysics' OK
[1555] Test Special: '%E' == 'trigger_push' OK
[1556] Test Special: '%E' == 'trigger_once' OK
[1557] Test Special: '%E' == 'random_spawner' OK
[1558] Test Special: '%E' == 'random_spawner' OK
[1559] Test Special: '%E' == 'random_spawner' OK
[1560] Test Special: '%E' == 'me_pipe_lead' OK
[1561] Test Special: '%E' == 'me_pipe_lead' OK
[1562] Test Special: '%E' == 'trigger_hurt' OK
[1563] Test Special: '%E' == 'random_spawner' OK
[1564] Test Special: '%E' == 'trigger_hurt' OK
[1565] Test Special: '%E' == 'prop_dynamic' OK
[1566] Test Special: '%E' == 'func_door_rotating' OK
[1567] Test Special: '%E' == 'prop_dynamic' OK
[1568] Test Special: '%E' == 'func_door_rotating' OK
[1569] Test Special: '%E' == 'prop_physics' OK
[1570] Test Special: '%E' == 'trigger_progress_weapon' OK
[1571] Test Special: '%E' == 'trigger_progress_weapon' OK
[1572] Test Special: '%E' == 'prop_physics' OK
[1573] Test Special: '%E' == 'random_spawner' OK
[1574] Test Special: '%E' == 'tool_extinguisher' OK
[1575] Test Special: '%E' == 'func_zombie_spawn' OK
[1576] Test Special: '%E' == 'func_zombie_spawn' OK
[1577] Test Special: '%E' == 'func_zombie_spawn' OK
[1578] Test Special: '%E' == 'func_zombie_spawn' OK
[1579] Test Special: '%E' == 'func_zombie_spawn' OK
[1580] Test Special: '%E' == 'func_zombie_spawn' OK
[1581] Test Special: '%E' == 'func_zombie_spawn' OK
[1582] Test Special: '%E' == 'func_zombie_spawn' OK
[1583] Test Special: '%E' == 'func_zombie_spawn' OK
[1584] Test Special: '%E' == 'func_zombie_spawn' OK
[1585] Test Special: '%E' == 'func_zombie_spawn' OK
[1586] Test Special: '%E' == 'func_zombie_spawn' OK
[1587] Test Special: '%E' == 'func_zombie_spawn' OK
[1588] Test Special: '%E' == 'func_zombie_spawn' OK
[1589] Test Special: '%E' == 'func_zombie_spawn' OK
[1590] Test Special: '%E' == 'func_zombie_spawn' OK
[1591] Test Special: '%E' == 'func_zombie_spawn' OK
[1592] Test Special: '%E' == 'func_zombie_spawn' OK
[1593] Test Special: '%E' == 'func_zombie_spawn' OK
[1594] Test Special: '%E' == 'func_zombie_spawn' OK
[1595] Test Special: '%E' == 'func_zombie_spawn' OK
[1596] Test Special: '%E' == 'func_zombie_spawn' OK
[1597] Test Special: '%E' == 'func_zombie_spawn' OK
[1598] Test Special: '%E' == 'overlord_zombie_helper' OK
[1599] Test Special: '%E' == 'func_zombie_spawn' OK
[1600] Test Special: '%E' == 'func_zombie_spawn' OK
[1601] Test Special: '%E' == 'func_zombie_spawn' OK
[1602] Test Special: '%E' == 'random_spawner' OK
[1603] Test Special: '%E' == 'random_spawner' OK
[1604] Test Special: '%E' == 'random_spawner' OK
[1605] Test Special: '%E' == 'random_spawner' OK
[1606] Test Special: '%E' == 'func_breakable' OK
[1607] Test Special: '%E' == 'ambient_generic' OK
[1608] Test Special: '%E' == 'logic_relay' OK
[1609] Test Special: '%E' == 'prop_physics' OK
[1610] Test Special: '%E' == 'trigger_progress_weapon' OK
[1611] Test Special: '%E' == 'filter_activator_name' OK
[1612] Test Special: '%E' == 'color_correction' OK
[1613] Test Special: '%E' == 'env_fog_controller' OK
[1614] Test Special: '%E' == 'random_spawner' OK
[1615] Test Special: '%E' == 'random_spawner' OK
[1616] Test Special: '%E' == 'random_spawner' OK
[1617] Test Special: '%E' == 'random_spawner' OK
[1618] Test Special: '%E' == 'random_spawner' OK
[1619] Test Special: '%E' == 'random_spawner' OK
[1620] Test Special: '%E' == 'me_bat_metal' OK
[1621] Test Special: '%E' == 'random_spawner' OK
[1622] Test Special: '%E' == 'random_spawner' OK
[1623] Test Special: '%E' == 'random_spawner' OK
[1624] Test Special: '%E' == 'random_spawner' OK
[1625] Test Special: '%E' == 'random_spawner' OK
[1626] Test Special: '%E' == 'random_spawner' OK
[1627] Test Special: '%E' == 'random_spawner' OK
[1628] Test Special: '%E' == 'random_spawner' OK
[1629] Test Special: '%E' == 'random_spawner' OK
[1630] Test Special: '%E' == 'random_spawner' OK
[1631] Test Special: '%E' == 'random_spawner' OK
[1632] Test Special: '%E' == 'random_spawner' OK
[1633] Test Special: '%E' == 'random_spawner' OK
[1634] Test Special: '%E' == 'prop_dynamic' OK
[1635] Test Special: '%E' == 'func_button' OK
[1636] Test Special: '%E' == 'random_spawner' OK
[1637] Test Special: '%E' == 'random_spawner' OK
[1638] Test Special: '%E' == 'random_spawner' OK
[1639] Test Special: '%E' == 'random_spawner' OK
[1640] Test Special: '%E' == 'random_spawner' OK
[1641] Test Special: '%E' == 'trigger_hurt' OK
[1642] Test Special: '%E' == 'light' OK
[1643] Test Special: '%E' == 'func_illusionary' OK
[1644] Test Special: '%E' == 'func_illusionary' OK
[1645] Test Special: '%E' == 'prop_physics' OK
[1646] Test Special: '%E' == 'prop_dynamic' OK
[1647] Test Special: '%E' == 'func_brush' OK
[1648] Test Special: '%E' == 'prop_ragdoll' OK
[1649] Test Special: '%E' == 'filter_activator_name' OK
[1650] Test Special: '%E' == 'trigger_once' OK
[1651] Test Special: '%E' == 'point_template' OK
[1652] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1653] Test Special: '%E' == 'trigger_once' OK
[1654] Test Special: '%E' == 'func_zombie_spawn' OK
[1655] Test Special: '%E' == 'func_zombie_spawn' OK
[1656] Test Special: '%E' == 'func_zombie_spawn' OK
[1657] Test Special: '%E' == 'func_zombie_spawn' OK
[1658] Test Special: '%E' == 'env_smokestack' OK
[1659] Test Special: '%E' == 'infodecal' OK
[1660] Test Special: '%E' == 'infodecal' OK
[1661] Test Special: '%E' == 'item_first_aid' OK
[1662] Test Special: '%E' == 'func_nav_blocker' OK
[1663] Test Special: '%E' == 'func_nav_blocker' OK
[1664] Test Special: '%E' == 'infodecal' OK
[1665] Test Special: '%E' == 'infodecal' OK
[1666] Test Special: '%E' == 'func_clip_vphysics' OK
[1667] Test Special: '%E' == 'func_brush' OK
[1668] Test Special: '%E' == 'random_spawner' OK
[1669] Test Special: '%E' == 'func_brush' OK
[1670] Test Special: '%E' == 'func_brush' OK
[1671] Test Special: '%E' == 'func_breakable_surf' OK
[1672] Test Special: '%E' == 'func_breakable_surf' OK
[1673] Test Special: '%E' == 'func_brush' OK
[1674] Test Special: '%E' == 'func_zombie_spawn' OK
[1675] Test Special: '%E' == 'trigger_multiple' OK
[1676] Test Special: '%E' == 'point_template' OK
[1677] Test Special: '%E' == 'prop_door_breakable' OK
[1678] Test Special: '%E' == 'func_illusionary' OK
[1679] Test Special: '%E' == 'logic_relay' OK
[1680] Test Special: '%E' == 'random_spawner' OK
[1681] Test Special: '%E' == 'prop_physics_multiplayer' OK
[1682] Test Special: '%E' == 'env_steam' OK
[1683] Test Special: '%E' == 'trigger_once' OK
[1684] Test Special: '%E' == 'func_door_rotating' OK
[1685] Test Special: '%E' == 'random_spawner' OK
[1686] Test Special: '%E' == 'item_maglite' OK
[1687] Test Special: '%E' == 'random_spawner' OK
[1688] Test Special: '%E' == 'me_fubar' OK
[1689] Test Special: '%E' == 'item_gene_therapy' OK
[1690] Test Special: '%E' == 'item_gene_therapy' OK
[1691] Test Special: '%E' == 'me_kitknife' OK
[1692] Test Special: '%E' == 'func_clip_vphysics' OK
[1693] Test Special: '%E' == 'func_clip_vphysics' OK
[1694] Test Special: '%E' == 'filter_multi' OK
[1695] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1696] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1697] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1698] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1699] Test Special: '%E' == 'filter_activator_class' OK
[1700] Test Special: '%E' == 'func_clip_vphysics' OK
[1701] Test Special: '%E' == 'func_areaportal' OK
[1702] Test Special: '%E' == 'func_areaportal' OK
[1703] Test Special: '%E' == 'func_brush' OK
[1704] Test Special: '%E' == 'func_breakable_surf' OK
[1705] Test Special: '%E' == 'func_breakable_surf' OK
[1706] Test Special: '%E' == 'func_breakable_surf' OK
[1707] Test Special: '%E' == 'func_breakable_surf' OK
[1708] Test Special: '%E' == 'func_breakable_surf' OK
[1709] Test Special: '%E' == 'infodecal' OK
[1710] Test Special: '%E' == 'func_brush' OK
[1711] Test Special: '%E' == 'func_brush' OK
[1712] Test Special: '%E' == 'ambient_generic' OK
[1713] Test Special: '%E' == 'ambient_generic' OK
[1714] Test Special: '%E' == 'ambient_generic' OK
[1715] Test Special: '%E' == 'ambient_generic' OK
[1716] Test Special: '%E' == 'ambient_generic' OK
[1717] Test Special: '%E' == 'ambient_generic' OK
[1718] Test Special: '%E' == 'ambient_generic' OK
[1719] Test Special: '%E' == 'ambient_generic' OK
[1720] Test Special: '%E' == 'ambient_generic' OK
[1721] Test Special: '%E' == 'ambient_generic' OK
[1722] Test Special: '%E' == 'ambient_generic' OK
[1723] Test Special: '%E' == 'ambient_generic' OK
[1724] Test Special: '%E' == 'ambient_generic' OK
[1725] Test Special: '%E' == 'ambient_generic' OK
[1726] Test Special: '%E' == 'nmrih_objective_boundary' OK
[1727] Test Special: '%E' == 'func_brush' OK
[1728] Test Special: '%E' == 'func_dustmotes' OK
[1729] Test Special: '%E' == 'func_dustmotes' OK
[1730] Test Special: '%E' == 'point_template' OK
[1731] Test Special: '%E' == 'env_sun' OK
[1732] Test Special: '%E' == 'tool_extinguisher' OK
[1733] Test Special: '%E' == 'prop_physics_multiplayer' OK
[1734] Test Special: '%E' == 'prop_dynamic' OK
[1735] Test Special: '%E' == 'prop_dynamic' OK
[1736] Test Special: '%E' == 'random_spawner' OK
[1737] Test Special: '%E' == 'random_spawner' OK
[1738] Test Special: '%E' == 'random_spawner' OK
[1739] Test Special: '%E' == 'random_spawner' OK
[1740] Test Special: '%E' == 'infodecal' OK
[1741] Test Special: '%E' == 'func_zombie_spawn' OK
[1742] Test Special: '%E' == 'func_zombie_spawn' OK
[1743] Test Special: '%E' == 'func_zombie_spawn' OK
[1744] Test Special: '%E' == 'ambient_generic' OK
[1745] Test Special: '%E' == 'func_zombie_spawn' OK
[1746] Test Special: '%E' == 'func_zombie_spawn' OK
[1747] Test Special: '%E' == 'light' OK
[1748] Test Special: '%E' == 'logic_relay' OK
[1749] Test Special: '%E' == 'ambient_generic' OK
[1750] Test Special: '%E' == 'logic_timer' OK
[1751] Test Special: '%E' == 'light' OK
[1752] Test Special: '%E' == 'trigger_hurt' OK
[1753] Test Special: '%E' == 'trigger_hurt' OK
[1754] Test Special: '%E' == 'nmrih_extract_preview' OK
[1755] Test Special: '%E' == 'point_template' OK
[1756] Test Special: '%E' == 'point_template' OK
[1757] Test Special: '%E' == 'point_template' OK
[1758] Test Special: '%E' == 'point_template' OK
[1759] Test Special: '%E' == 'point_template' OK
[1760] Test Special: '%E' == 'func_zombie_spawn' OK
[1761] Test Special: '%E' == 'prop_dynamic' OK
[1762] Test Special: '%E' == 'random_spawner' OK
[1763] Test Special: '%E' == 'tool_extinguisher' OK
[1764] Test Special: '%E' == 'func_breakable_surf' OK
[1765] Test Special: '%E' == 'func_illusionary' OK
[1766] Test Special: '%E' == 'random_spawner' OK
[1767] Test Special: '%E' == 'env_spark' OK
[1768] Test Special: '%E' == 'random_spawner' OK
[1769] Test Special: '%E' == 'random_spawner' OK
[1770] Test Special: '%E' == 'random_spawner' OK
[1771] Test Special: '%E' == 'random_spawner' OK
[1772] Test Special: '%E' == 'random_spawner' OK
[1773] Test Special: '%E' == 'random_spawner' OK
[1774] Test Special: '%E' == 'prop_dynamic' OK
[1775] Test Special: '%E' == 'func_breakable_surf' OK
[1776] Test Special: '%E' == 'func_breakable_surf' OK
[1777] Test Special: '%E' == 'func_breakable_surf' OK
[1778] Test Special: '%E' == 'func_breakable_surf' OK
[1779] Test Special: '%E' == 'func_breakable_surf' OK
[1780] Test Special: '%E' == 'trigger_once' OK
[1781] Test Special: '%E' == 'prop_door_breakable' OK
[1782] Test Special: '%E' == 'infodecal' OK
[1783] Test Special: '%E' == 'filter_activator_name' OK
[1784] Test Special: '%E' == 'filter_activator_name' OK
[1785] Test Special: '%E' == 'infodecal' OK
[1786] Test Special: '%E' == 'func_illusionary' OK
[1787] Test Special: '%E' == 'prop_ragdoll' OK
[1788] Test Special: '%E' == 'infodecal' OK
[1789] Test Special: '%E' == 'random_spawner' OK
[1790] Test Special: '%E' == 'random_spawner' OK
[1791] Test Special: '%E' == 'random_spawner' OK
[1792] Test Special: '%E' == 'random_spawner' OK
[1793] Test Special: '%E' == 'random_spawner' OK
[1794] Test Special: '%E' == 'random_spawner' OK
[1795] Test Special: '%E' == 'item_walkietalkie' OK
[1796] Test Special: '%E' == 'light' OK
[1797] Test Special: '%E' == 'prop_dynamic' OK
[1798] Test Special: '%E' == 'prop_dynamic' OK
[1799] Test Special: '%E' == 'prop_dynamic' OK
[1800] Test Special: '%E' == 'prop_dynamic' OK
[1801] Test Special: '%E' == 'prop_dynamic' OK
[1802] Test Special: '%E' == 'prop_dynamic' OK
[1803] Test Special: '%E' == 'prop_dynamic' OK
[1804] Test Special: '%E' == 'prop_dynamic' OK
[1805] Test Special: '%E' == 'func_brush' OK
[1806] Test Special: '%E' == 'prop_dynamic' OK
[1807] Test Special: '%E' == 'prop_dynamic' OK
[1808] Test Special: '%E' == 'prop_dynamic' OK
[1809] Test Special: '%E' == 'func_door_rotating' OK
[1810] Test Special: '%E' == 'func_door_rotating' OK
[1811] Test Special: '%E' == 'trigger_once' OK
[1812] Test Special: '%E' == 'trigger_once' OK
[1813] Test Special: '%E' == 'move_rope' OK
[1814] Test Special: '%E' == 'move_rope' OK
[1815] Test Special: '%E' == 'move_rope' OK
[1816] Test Special: '%E' == 'move_rope' OK
[1817] Test Special: '%E' == 'keyframe_rope' OK
[1818] Test Special: '%E' == 'keyframe_rope' OK
[1819] Test Special: '%E' == 'keyframe_rope' OK
[1820] Test Special: '%E' == 'prop_physics' OK
[1821] Test Special: '%E' == 'prop_physics' OK
[1822] Test Special: '%E' == 'math_counter' OK
[1823] Test Special: '%E' == 'func_breakable' OK
[1824] Test Special: '%E' == 'trigger_multiple' OK
[1825] Test Special: '%E' == 'func_breakable' OK
[1826] Test Special: '%E' == 'func_brush' OK
[1827] Test Special: '%E' == 'func_clip_vphysics' OK
[1828] Test Special: '%E' == 'nmrih_barricade' OK
[1829] Test Special: '%E' == 'nmrih_barricade' OK
[1830] Test Special: '%E' == 'nmrih_barricade' OK
[1831] Test Special: '%E' == 'nmrih_barricade' OK
[1832] Test Special: '%E' == 'nmrih_barricade' OK
[1833] Test Special: '%E' == 'nmrih_barricade' OK
[1834] Test Special: '%E' == 'func_illusionary' OK
[1835] Test Special: '%E' == 'nmrih_barricade' OK
[1836] Test Special: '%E' == 'func_breakable' OK
[1837] Test Special: '%E' == 'func_breakable' OK
[1838] Test Special: '%E' == 'nmrih_barricade' OK
[1839] Test Special: '%E' == 'nmrih_barricade' OK
[1840] Test Special: '%E' == 'random_spawner' OK
[1841] Test Special: '%E' == 'env_sprite' OK
[1842] Test Special: '%E' == 'env_sprite' OK
[1843] Test Special: '%E' == 'env_sprite' OK
[1844] Test Special: '%E' == 'infodecal' OK
[1845] Test Special: '%E' == 'func_clip_vphysics' OK
[1846] Test Special: '%E' == 'env_soundscape' OK
[1847] Test Special: '%E' == 'func_clip_vphysics' OK
[1848] Test Special: '%E' == 'ambient_generic' OK
[1849] Test Special: '%E' == 'ambient_generic' OK
[1850] Test Special: '%E' == 'infodecal' OK
[1851] Test Special: '%E' == 'item_bandages' OK
[1852] Test Special: '%E' == 'func_brush' OK
[1853] Test Special: '%E' == 'water_lod_control' OK
[1854] Test Special: '%E' == 'random_spawner' OK
[1855] Test Special: '%E' == 'random_spawner' OK
[1856] Test Special: '%E' == 'random_spawner' OK
[1857] Test Special: '%E' == 'random_spawner' OK
[1858] Test Special: '%E' == 'env_soundscape' OK
[1859] Test Special: '%E' == 'env_soundscape' OK
[1860] Test Special: '%E' == 'env_soundscape' OK
[1861] Test Special: '%E' == 'env_soundscape' OK
[1862] Test Special: '%E' == 'env_soundscape' OK
[1863] Test Special: '%E' == 'random_spawner' OK
[1864] Test Special: '%E' == 'random_spawner' OK
[1865] Test Special: '%E' == 'prop_door_breakable' OK
[1866] Test Special: '%E' == 'point_template' OK
[1867] Test Special: '%E' == 'infodecal' OK
[1868] Test Special: '%E' == 'func_illusionary' OK
[1869] Test Special: '%E' == 'prop_dynamic' OK
[1870] Test Special: '%E' == 'func_brush' OK
[1871] Test Special: '%E' == 'func_breakable' OK
[1872] Test Special: '%E' == 'trigger_once' OK
[1873] Test Special: '%E' == 'func_brush' OK
[1874] Test Special: '%E' == 'ambient_generic' OK
[1875] Test Special: '%E' == 'prop_dynamic' OK
[1876] Test Special: '%E' == 'prop_dynamic' OK
[1877] Test Special: '%E' == 'func_door_rotating' OK
[1878] Test Special: '%E' == 'func_door_rotating' OK
[1879] Test Special: '%E' == 'random_spawner' OK
[1880] Test Special: '%E' == 'random_spawner' OK
[1881] Test Special: '%E' == 'random_spawner' OK
[1882] Test Special: '%E' == 'point_teleport' OK
[1883] Test Special: '%E' == 'point_template' OK
[1884] Test Special: '%E' == 'math_counter' OK
[1885] Test Special: '%E' == 'math_counter' OK
[1886] Test Special: '%E' == 'point_template' OK
[1887] Test Special: '%E' == 'point_template' OK
[1888] Test Special: '%E' == 'prop_dynamic' OK
[1889] Test Special: '%E' == 'func_clip_vphysics' OK
[1890] Test Special: '%E' == 'func_clip_vphysics' OK
[1891] Test Special: '%E' == 'func_clip_vphysics' OK
[1892] Test Special: '%E' == 'light' OK
[1893] Test Special: '%E' == 'light' OK
[1894] Test Special: '%E' == 'env_sprite' OK
[1895] Test Special: '%E' == 'func_brush' OK
[1896] Test Special: '%E' == 'env_sprite' OK
[1897] Test Special: '%E' == 'func_illusionary' OK
[1898] Test Special: '%E' == 'func_brush' OK
[1899] Test Special: '%E' == 'func_clip_vphysics' OK
[1900] Test Special: '%E' == 'func_brush' OK
[1901] Test Special: '%E' == 'func_clip_vphysics' OK
[1902] Test Special: '%E' == 'func_brush' OK
[1903] Test Special: '%E' == 'func_brush' OK
[1904] Test Special: '%E' == 'func_clip_vphysics' OK
[1905] Test Special: '%E' == 'func_brush' OK
[1906] Test Special: '%E' == 'func_clip_vphysics' OK
[1907] Test Special: '%E' == 'func_door_rotating' OK
[1908] Test Special: '%E' == 'trigger_once' OK
[1909] Test Special: '%E' == 'func_clip_vphysics' OK
[1910] Test Special: '%E' == 'trigger_once' OK
[1911] Test Special: '%E' == 'env_sprite' OK
[1912] Test Special: '%E' == 'infodecal' OK
[1913] Test Special: '%E' == 'infodecal' OK
[1914] Test Special: '%E' == 'infodecal' OK
[1915] Test Special: '%E' == 'func_clip_vphysics' OK
[1916] Test Special: '%E' == 'func_illusionary' OK
[1917] Test Special: '%E' == 'filter_multi' OK
[1918] Test Special: '%E' == 'func_clip_vphysics' OK
[1919] Test Special: '%E' == 'func_clip_vphysics' OK
[1920] Test Special: '%E' == 'prop_dynamic' OK
[1921] Test Special: '%E' == 'func_brush' OK
[1922] Test Special: '%E' == 'func_brush' OK
[1923] Test Special: '%E' == 'move_rope' OK
[1924] Test Special: '%E' == 'func_illusionary' OK
[1925] Test Special: '%E' == 'func_clip_vphysics' OK
[1926] Test Special: '%E' == 'func_breakable' OK
[1927] Test Special: '%E' == 'me_chainsaw' OK
[1928] Test Special: '%E' == 'ambient_generic' OK
[1929] Test Special: '%E' == 'move_rope' OK
[1930] Test Special: '%E' == 'move_rope' OK
[1931] Test Special: '%E' == 'func_brush' OK
[1932] Test Special: '%E' == 'prop_dynamic' OK
[1933] Test Special: '%E' == 'prop_dynamic' OK
[1934] Test Special: '%E' == 'func_brush' OK
[1935] Test Special: '%E' == 'move_rope' OK
[1936] Test Special: '%E' == 'move_rope' OK
[1937] Test Special: '%E' == 'move_rope' OK
[1938] Test Special: '%E' == 'move_rope' OK
[1939] Test Special: '%E' == 'light' OK
[1940] Test Special: '%E' == 'filter_activator_class' OK
[1941] Test Special: '%E' == 'move_rope' OK
[1942] Test Special: '%E' == 'move_rope' OK
[1943] Test Special: '%E' == 'move_rope' OK
[1944] Test Special: '%E' == 'move_rope' OK
[1945] Test Special: '%E' == 'move_rope' OK
[1946] Test Special: '%E' == 'move_rope' OK
[1947] Test Special: '%E' == 'move_rope' OK
[1948] Test Special: '%E' == 'move_rope' OK
[1949] Test Special: '%E' == 'move_rope' OK
[1950] Test Special: '%E' == 'keyframe_rope' OK
[1951] Test Special: '%E' == 'keyframe_rope' OK
[1952] Test Special: '%E' == 'move_rope' OK
[1953] Test Special: '%E' == 'move_rope' OK
[1954] Test Special: '%E' == 'keyframe_rope' OK
[1955] Test Special: '%E' == 'keyframe_rope' OK
[1956] Test Special: '%E' == 'move_rope' OK
[1957] Test Special: '%E' == 'move_rope' OK
[1958] Test Special: '%E' == 'move_rope' OK
[1959] Test Special: '%E' == 'move_rope' OK
[1960] Test Special: '%E' == 'move_rope' OK
[1961] Test Special: '%E' == 'move_rope' OK
[1962] Test Special: '%E' == 'move_rope' OK
[1963] Test Special: '%E' == 'move_rope' OK
[1964] Test Special: '%E' == 'keyframe_rope' OK
[1965] Test Special: '%E' == 'keyframe_rope' OK
[1966] Test Special: '%E' == 'move_rope' OK
[1967] Test Special: '%E' == 'move_rope' OK
[1968] Test Special: '%E' == 'move_rope' OK
[1969] Test Special: '%E' == 'move_rope' OK
[1970] Test Special: '%E' == 'move_rope' OK
[1971] Test Special: '%E' == 'move_rope' OK
[1972] Test Special: '%E' == 'keyframe_rope' OK
[1973] Test Special: '%E' == 'keyframe_rope' OK
[1974] Test Special: '%E' == 'move_rope' OK
[1975] Test Special: '%E' == 'move_rope' OK
[1976] Test Special: '%E' == 'keyframe_rope' OK
[1977] Test Special: '%E' == 'keyframe_rope' OK
[1978] Test Special: '%E' == 'keyframe_rope' OK
[1979] Test Special: '%E' == 'keyframe_rope' OK
[1980] Test Special: '%E' == 'move_rope' OK
[1981] Test Special: '%E' == 'move_rope' OK
[1982] Test Special: '%E' == 'keyframe_rope' OK
[1983] Test Special: '%E' == 'keyframe_rope' OK
[1984] Test Special: '%E' == 'move_rope' OK
[1985] Test Special: '%E' == 'move_rope' OK
[1986] Test Special: '%E' == 'move_rope' OK
[1987] Test Special: '%E' == 'move_rope' OK
[1988] Test Special: '%E' == 'move_rope' OK
[1989] Test Special: '%E' == 'keyframe_rope' OK
[1990] Test Special: '%E' == 'keyframe_rope' OK
[1991] Test Special: '%E' == 'keyframe_rope' OK
[1992] Test Special: '%E' == 'keyframe_rope' OK
[1993] Test Special: '%E' == 'move_rope' OK
[1994] Test Special: '%E' == 'move_rope' OK
[1995] Test Special: '%E' == 'move_rope' OK
[1996] Test Special: '%E' == 'move_rope' OK
[1997] Test Special: '%E' == 'move_rope' OK
[1998] Test Special: '%E' == 'trigger_soundscape' OK
[1999] Test Special: '%E' == 'move_rope' OK
[2000] Test Special: '%E' == 'move_rope' OK
[2001] Test Special: '%E' == 'move_rope' OK
[2002] Test Special: '%E' == 'move_rope' OK
[2003] Test Special: '%E' == 'move_rope' OK
[2004] Test Special: '%E' == 'move_rope' OK
[2005] Test Special: '%E' == 'move_rope' OK
[2006] Test Special: '%E' == 'move_rope' OK
[2007] Test Special: '%E' == 'move_rope' OK
[2008] Test Special: '%E' == 'npc_template_maker' OK
[2009] Test Special: '%E' == 'func_breakable_surf' OK
[2010] Test Special: '%E' == 'func_breakable_surf' OK
[2011] Test Special: '%E' == 'env_sprite' OK
[2012] Test Special: '%E' == 'env_sprite' OK
[2013] Test Special: '%E' == 'infodecal' OK
[2014] Test Special: '%E' == 'infodecal' OK
[2015] Test Special: '%E' == 'infodecal' OK
[2016] Test Special: '%E' == 'infodecal' OK
[2017] Test Special: '%E' == 'prop_dynamic' OK
[2018] Test Special: '%E' == 'prop_dynamic' OK
[2019] Test Special: '%E' == 'prop_dynamic' OK
[2020] Test Special: '%E' == 'prop_dynamic' OK
[2021] Test Special: '%E' == 'prop_dynamic' OK
[2022] Test Special: '%E' == 'prop_dynamic' OK
[2023] Test Special: '%E' == 'prop_dynamic' OK
[2024] Test Special: '%E' == 'prop_dynamic' OK
[2025] Test Special: '%E' == 'prop_dynamic' OK
[2026] Test Special: '%E' == 'prop_dynamic' OK
[2027] Test Special: '%E' == 'func_brush' OK
[2028] Test Special: '%E' == 'prop_dynamic' OK
[2029] Test Special: '%E' == 'func_brush' OK
[2030] Test Special: '%E' == 'prop_dynamic' OK
[2031] Test Special: '%E' == 'prop_dynamic' OK
[2032] Test Special: '%E' == 'point_template' OK
[2033] Test Special: '%E' == 'func_brush' OK
[2034] Test Special: '%E' == 'func_brush' OK
[2035] Test Special: '%E' == 'func_brush' OK
[2036] Test Special: '%E' == 'func_breakable' OK
[2037] Test Special: '%E' == 'func_brush' OK
[2038] Test Special: '%E' == 'point_template' OK
[2039] Test Special: '%E' == 'point_template' OK
[2040] Test Special: '%E' == 'point_template' OK
[2041] Test Special: '%E' == 'infodecal' OK
[2042] Test Special: '%E' == 'random_spawner' OK
[2043] Test Special: '%E' == 'random_spawner' OK
[2044] Test Special: '%E' == 'random_spawner' OK
[2045] Test Special: '%E' == 'random_spawner' OK
[2046] Test Special: '%E' == 'random_spawner' OK
[2047] Test Special: '%E' == 'env_soundscape' OK
[2048] Test Special: '%E' == 'env_soundscape' OK
[2049] Test Special: '%E' == 'env_soundscape' OK
[2050] Test Special: '%E' == 'env_soundscape' OK
[2051] Test Special: '%E' == 'env_soundscape' OK
[2052] Test Special: '%E' == 'env_soundscape' OK
[2053] Test Special: '%E' == 'env_soundscape' OK
[2054] Test Special: '%E' == 'env_soundscape' OK
[2055] Test Special: '%E' == 'env_soundscape' OK
[2056] Test Special: '%E' == 'env_soundscape' OK
[2057] Test Special: '%E' == 'info_target' OK
[2058] Test Special: '%E' == 'env_soundscape' OK
[2059] Test Special: '%E' == 'env_soundscape' OK
[2060] Test Special: '%E' == 'env_soundscape' OK
[2061] Test Special: '%E' == 'env_soundscape' OK
[2062] Test Special: '%E' == 'env_soundscape' OK
[2063] Test Special: '%E' == 'prop_dynamic' OK
[2064] Test Special: '%E' == 'info_target' OK
[2065] Test Special: '%E' == 'info_target' OK
[2066] Test Special: '%E' == 'info_target' OK
[2067] Test Special: '%E' == 'info_target' OK
[2068] Test Special: '%E' == 'info_target' OK
[2069] Test Special: '%E' == 'info_target' OK
[2070] Test Special: '%E' == 'env_soundscape' OK
[2071] Test Special: '%E' == 'env_soundscape' OK
[2072] Test Special: '%E' == 'env_soundscape' OK
[2073] Test Special: '%E' == 'env_soundscape' OK
[2074] Test Special: '%E' == 'info_target' OK
[2075] Test Special: '%E' == 'info_target' OK
[2076] Test Special: '%E' == 'info_target' OK
[2077] Test Special: '%E' == 'info_target' OK
[2078] Test Special: '%E' == 'info_target' OK
[2079] Test Special: '%E' == 'info_target' OK
[2080] Test Special: '%E' == 'env_wind' OK
[2081] Test Special: '%E' == 'npc_template_maker' OK
[2082] Test Special: '%E' == 'npc_template_maker' OK
[2083] Test Special: '%E' == 'npc_template_maker' OK
[2084] Test Special: '%E' == 'infodecal' OK
[2085] Test Special: '%E' == 'infodecal' OK
[2086] Test Special: '%E' == 'func_brush' OK
[2087] Test Special: '%E' == 'func_brush' OK
[2088] Test Special: '%E' == 'func_brush' OK
[2089] Test Special: '%E' == 'func_brush' OK
[2090] Test Special: '%E' == 'func_brush' OK
[2091] Test Special: '%E' == 'func_brush' OK
[2092] Test Special: '%E' == 'infodecal' OK
[2093] Test Special: '%E' == 'infodecal' OK
[2094] Test Special: '%E' == 'infodecal' OK
[2095] Test Special: '%E' == 'infodecal' OK
[2096] Test Special: '%E' == 'infodecal' OK
[2097] Test Special: '%E' == 'infodecal' OK
[2098] Test Special: '%E' == 'point_template' OK
[2099] Test Special: '%E' == 'logic_relay' OK
[2100] Test Special: '%E' == 'logic_relay' OK
[2101] Test Special: '%E' == 'point_template' OK
[2102] Test Special: '%E' == 'point_template' OK
[2103] Test Special: '%E' == 'logic_relay' OK
[2104] Test Special: '%E' == 'infodecal' OK
[2105] Test Special: '%E' == 'random_spawner' OK
[2106] Test Special: '%E' == 'infodecal' OK
[2107] Test Special: '%E' == 'infodecal' OK
[2108] Test Special: '%E' == 'infodecal' OK
[2109] Test Special: '%E' == 'func_brush' OK
[2110] Test Special: '%E' == 'func_brush' OK
[2111] Test Special: '%E' == 'infodecal' OK
[2112] Test Special: '%E' == 'point_template' OK
[2113] Test Special: '%E' == 'trigger_once' OK
[2114] Test Special: '%E' == 'env_sprite' OK
[2115] Test Special: '%E' == 'ambient_generic' OK
[2116] Test Special: '%E' == 'prop_dynamic' OK
[2117] Test Special: '%E' == 'func_door_rotating' OK
[2118] Test Special: '%E' == 'prop_dynamic' OK
[2119] Test Special: '%E' == 'trigger_once' OK
[2120] Test Special: '%E' == 'func_breakable_surf' OK
[2121] Test Special: '%E' == 'func_breakable_surf' OK
[2122] Test Special: '%E' == 'prop_dynamic' OK
[2123] Test Special: '%E' == 'func_door_rotating' OK
[2124] Test Special: '%E' == 'func_door_rotating' OK
[2125] Test Special: '%E' == 'infodecal' OK
[2126] Test Special: '%E' == 'infodecal' OK
[2127] Test Special: '%E' == 'logic_relay' OK
[2128] Test Special: '%E' == 'logic_relay' OK
[2129] Test Special: '%E' == 'prop_dynamic' OK
[2130] Test Special: '%E' == 'func_brush' OK
[2131] Test Special: '%E' == 'func_brush' OK
[2132] Test Special: '%E' == 'func_lod' OK
[2133] Test Special: '%E' == 'point_template' OK
[2134] Test Special: '%E' == 'func_brush' OK
[2135] Test Special: '%E' == 'func_brush' OK
[2136] Test Special: '%E' == 'func_breakable' OK
[2137] Test Special: '%E' == 'ambient_generic' OK
[2138] Test Special: '%E' == 'prop_dynamic' OK
[2139] Test Special: '%E' == 'light' OK
[2140] Test Special: '%E' == 'func_areaportal' OK
[2141] Test Special: '%E' == 'func_lod' OK
[2142] Test Special: '%E' == 'func_lod' OK
[2143] Test Special: '%E' == 'func_breakable' OK
[2144] Test Special: '%E' == 'func_brush' OK
[2145] Test Special: '%E' == 'path_corner' OK
[2146] Test Special: '%E' == 'func_brush' OK
[2147] Test Special: '%E' == 'infodecal' OK
[2148] Test Special: '%E' == 'infodecal' OK
[2149] Test Special: '%E' == 'func_clip_vphysics' OK
[2150] Test Special: '%E' == 'func_clip_vphysics' OK
[2151] Test Special: '%E' == 'func_clip_vphysics' OK
[2152] Test Special: '%E' == 'func_clip_vphysics' OK
[2153] Test Special: '%E' == 'func_clip_vphysics' OK
[2154] Test Special: '%E' == 'func_clip_vphysics' OK
[2155] Test Special: '%E' == 'func_clip_vphysics' OK
[2156] Test Special: '%E' == 'func_clip_vphysics' OK
[2157] Test Special: '%E' == 'func_clip_vphysics' OK
[2158] Test Special: '%E' == 'func_clip_vphysics' OK
[2159] Test Special: '%E' == 'func_clip_vphysics' OK
[2160] Test Special: '%E' == 'func_clip_vphysics' OK
[2161] Test Special: '%E' == 'func_clip_vphysics' OK
[2162] Test Special: '%E' == 'func_clip_vphysics' OK
[2163] Test Special: '%E' == 'func_clip_vphysics' OK
[2164] Test Special: '%E' == 'func_clip_vphysics' OK
[2165] Test Special: '%E' == 'func_clip_vphysics' OK
[2166] Test Special: '%E' == 'func_clip_vphysics' OK
[2167] Test Special: '%E' == 'func_clip_vphysics' OK
[2168] Test Special: '%E' == 'func_clip_vphysics' OK
[2169] Test Special: '%E' == 'func_clip_vphysics' OK
[2170] Test Special: '%E' == 'func_clip_vphysics' OK
[2171] Test Special: '%E' == 'func_brush' OK
[2172] Test Special: '%E' == 'infodecal' OK
[2173] Test Special: '%E' == 'infodecal' OK
[2174] Test Special: '%E' == 'infodecal' OK
[2175] Test Special: '%E' == 'infodecal' OK
[2176] Test Special: '%E' == 'infodecal' OK
[2177] Test Special: '%E' == 'trigger_push' OK
[2178] Test Special: '%E' == 'trigger_push' OK
[2179] Test Special: '%E' == 'trigger_push' OK
[2180] Test Special: '%E' == 'func_illusionary' OK
[2181] Test Special: '%E' == 'func_clip_vphysics' OK
[2182] Test Special: '%E' == 'func_brush' OK
[2183] Test Special: '%E' == 'func_brush' OK
[2184] Test Special: '%E' == 'func_brush' OK
[2185] Test Special: '%E' == 'ambient_generic' OK
[2186] Test Special: '%E' == 'move_rope' OK
[2187] Test Special: '%E' == 'env_sprite' OK
[2188] Test Special: '%E' == 'func_illusionary' OK
[2189] Test Special: '%E' == 'func_brush' OK
[2190] Test Special: '%E' == 'func_brush' OK
[2191] Test Special: '%E' == 'func_clip_vphysics' OK
[2192] Test Special: '%E' == 'npc_template_maker' OK
[2193] Test Special: '%E' == 'func_clip_vphysics' OK
[2194] Test Special: '%E' == 'func_illusionary' OK
[2195] Test Special: '%E' == 'env_tonemap_controller' OK
[2196] Test Special: '%E' == 'func_movelinear' OK
[2197] Test Special: '%E' == 'filter_activator_name' OK
[2198] Test Special: '%E' == 'prop_dynamic' OK
[2199] Test Special: '%E' == 'prop_dynamic' OK
[2200] Test Special: '%E' == 'prop_dynamic' OK
[2201] Test Special: '%E' == 'prop_physics_multiplayer' OK
[2202] Test Special: '%E' == 'infodecal' OK
[2203] Test Special: '%E' == 'random_spawner' OK
[2204] Test Special: '%E' == 'prop_dynamic' OK
[2205] Test Special: '%E' == 'prop_physics' OK
[2206] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2207] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2208] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2209] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2210] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2211] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2212] Test Special: '%E' == 'func_brush' OK
[2213] Test Special: '%E' == 'point_template' OK
[2214] Test Special: '%E' == 'func_illusionary' OK
[2215] Test Special: '%E' == 'random_spawner' OK
[2216] Test Special: '%E' == 'trigger_once' OK
[2217] Test Special: '%E' == 'nmrih_barricade' OK
[2218] Test Special: '%E' == 'nmrih_barricade' OK
[2219] Test Special: '%E' == 'nmrih_barricade' OK
[2220] Test Special: '%E' == 'random_spawner' OK
[2221] Test Special: '%E' == 'func_zombie_spawn' OK
[2222] Test Special: '%E' == 'trigger_hurt' OK
[2223] Test Special: '%E' == 'point_template' OK
[2224] Test Special: '%E' == 'func_physbox' OK
[2225] Test Special: '%E' == 'func_areaportal' OK
[2226] Test Special: '%E' == 'trigger_multiple' OK
[2227] Test Special: '%E' == 'func_brush' OK
[2228] Test Special: '%E' == 'func_areaportal' OK
[2229] Test Special: '%E' == 'func_zombie_spawn' OK
[2230] Test Special: '%E' == 'func_clip_vphysics' OK
[2231] Test Special: '%E' == 'func_areaportal' OK
[2232] Test Special: '%E' == 'func_areaportal' OK
[2233] Test Special: '%E' == 'random_spawner' OK
[2234] Test Special: '%E' == 'tool_extinguisher' OK
[2235] Test Special: '%E' == 'func_breakable_surf' OK
[2236] Test Special: '%E' == 'logic_relay' OK
[2237] Test Special: '%E' == 'tool_barricade' OK
[2238] Test Special: '%E' == 'func_illusionary' OK
[2239] Test Special: '%E' == 'random_spawner' OK
[2240] Test Special: '%E' == 'random_spawner' OK
[2241] Test Special: '%E' == 'env_soundscape' OK
[2242] Test Special: '%E' == 'func_illusionary' OK
[2243] Test Special: '%E' == 'func_illusionary' OK
[2244] Test Special: '%E' == 'func_illusionary' OK
[2245] Test Special: '%E' == 'func_brush' OK
[2246] Test Special: '%E' == 'logic_auto' OK
[2247] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2248] Test Special: '%E' == 'env_soundscape' OK
[2249] Test Special: '%E' == 'func_illusionary' OK
[2250] Test Special: '%E' == 'sky_camera' OK
[2251] Test Special: '%E' == 'trigger_hurt' OK
[2252] Test Special: '%E' == 'trigger_hurt' OK
[2253] Test Special: '%E' == 'func_nmrih_extractionzone' OK
[2254] Test Special: '%E' == 'func_clip_vphysics' OK
[2255] Test Special: '%E' == 'func_brush' OK
[2256] Test Special: '%E' == 'func_brush' OK
[2257] Test Special: '%E' == 'func_brush' OK
[2258] Test Special: '%E' == 'func_brush' OK
[2259] Test Special: '%E' == 'func_brush' OK
[2260] Test Special: '%E' == 'func_brush' OK
[2261] Test Special: '%E' == 'func_clip_vphysics' OK
[2262] Test Special: '%E' == 'func_brush' OK
[2263] Test Special: '%E' == 'func_clip_vphysics' OK
[2264] Test Special: '%E' == 'func_brush' OK
[2265] Test Special: '%E' == 'func_brush' OK
[2266] Test Special: '%E' == 'func_clip_vphysics' OK
[2267] Test Special: '%E' == 'func_clip_vphysics' OK
[2268] Test Special: '%E' == 'func_brush' OK
[2269] Test Special: '%E' == 'prop_dynamic' OK
[2270] Test Special: '%E' == 'func_brush' OK
[2271] Test Special: '%E' == 'random_spawner' OK
[2272] Test Special: '%E' == 'random_spawner' OK
[2273] Test Special: '%E' == 'random_spawner' OK
[2274] Test Special: '%E' == 'random_spawner' OK
[2275] Test Special: '%E' == 'random_spawner' OK
[2276] Test Special: '%E' == 'prop_dynamic' OK
[2277] Test Special: '%E' == 'infodecal' OK
[2278] Test Special: '%E' == 'infodecal' OK
[2279] Test Special: '%E' == 'info_target' OK
[2280] Test Special: '%E' == 'prop_physics' OK
[2281] Test Special: '%E' == 'infodecal' OK
[2282] Test Special: '%E' == 'func_areaportal' OK
[2283] Test Special: '%E' == 'func_areaportal' OK
[2284] Test Special: '%E' == 'trigger_progress_weapon' OK
[2285] Test Special: '%E' == 'logic_relay' OK
[2286] Test Special: '%E' == 'trigger_infect' OK
[2287] Test Special: '%E' == 'env_soundscape' OK
[2288] Test Special: '%E' == 'prop_dynamic' OK
[2289] Test Special: '%E' == 'prop_dynamic' OK
[2290] Test Special: '%E' == 'infodecal' OK
[2291] Test Special: '%E' == 'infodecal' OK
[2292] Test Special: '%E' == 'prop_dynamic' OK
[2293] Test Special: '%E' == 'prop_dynamic' OK
[2294] Test Special: '%E' == 'prop_dynamic' OK
[2295] Test Special: '%E' == 'func_breakable' OK
[2296] Test Special: '%E' == 'func_breakable' OK
[2297] Test Special: '%E' == 'func_breakable' OK
[2298] Test Special: '%E' == 'point_template' OK
[2299] Test Special: '%E' == 'trigger_soundscape' OK
[2300] Test Special: '%E' == 'func_brush' OK
[2301] Test Special: '%E' == 'func_brush' OK
[2302] Test Special: '%E' == 'func_illusionary' OK
[2303] Test Special: '%E' == 'func_zombie_spawn' OK
[2304] Test Special: '%E' == 'func_zombie_spawn' OK
[2305] Test Special: '%E' == 'func_zombie_spawn' OK
[2306] Test Special: '%E' == 'func_zombie_spawn' OK
[2307] Test Special: '%E' == 'func_zombie_spawn' OK
[2308] Test Special: '%E' == 'func_zombie_spawn' OK
[2309] Test Special: '%E' == 'func_zombie_spawn' OK
[2310] Test Special: '%E' == 'func_zombie_spawn' OK
[2311] Test Special: '%E' == 'func_zombie_spawn' OK
[2312] Test Special: '%E' == 'func_zombie_spawn' OK
[2313] Test Special: '%E' == 'func_zombie_spawn' OK
[2314] Test Special: '%E' == 'func_zombie_spawn' OK
[2315] Test Special: '%E' == 'filter_activator_name' OK
[2316] Test Special: '%E' == 'filter_multi' OK
[2317] Test Special: '%E' == 'info_target' OK
[2318] Test Special: '%E' == 'info_target' OK
[2319] Test Special: '%E' == 'func_zombie_spawn' OK
[2320] Test Special: '%E' == 'point_template' OK
[2321] Test Special: '%E' == 'point_template' OK
[2322] Test Special: '%E' == 'trigger_once' OK
[2323] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2324] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2325] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2326] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2327] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2328] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2329] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2330] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2331] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2332] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2333] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2334] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2335] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2336] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2337] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2338] Test Special: '%E' == 'env_soundscape_triggerable' OK
[2339] Test Special: '%E' == 'trigger_soundscape' OK
[2340] Test Special: '%E' == 'trigger_soundscape' OK
[2341] Test Special: '%E' == 'trigger_soundscape' OK
[2342] Test Special: '%E' == 'trigger_soundscape' OK
[2343] Test Special: '%E' == 'trigger_soundscape' OK
[2344] Test Special: '%E' == 'trigger_soundscape' OK
[2345] Test Special: '%E' == 'trigger_soundscape' OK
[2346] Test Special: '%E' == 'trigger_soundscape' OK
[2347] Test Special: '%E' == 'trigger_soundscape' OK
[2348] Test Special: '%E' == 'trigger_soundscape' OK
[2349] Test Special: '%E' == 'trigger_soundscape' OK
[2350] Test Special: '%E' == 'trigger_soundscape' OK
[2351] Test Special: '%E' == 'trigger_soundscape' OK
[2352] Test Special: '%E' == 'trigger_soundscape' OK
[2353] Test Special: '%E' == 'trigger_soundscape' OK
[2354] Test Special: '%E' == 'move_rope' OK
[2355] Test Special: '%E' == 'move_rope' OK
[2356] Test Special: '%E' == 'func_clip_vphysics' OK
[2357] Test Special: '%E' == 'infodecal' OK
[2358] Test Special: '%E' == 'random_spawner' OK
[2359] Test Special: '%E' == 'infodecal' OK
[2360] Test Special: '%E' == 'infodecal' OK
[2361] Test Special: '%E' == 'infodecal' OK
[2362] Test Special: '%E' == 'infodecal' OK
[2363] Test Special: '%E' == 'infodecal' OK
[2364] Test Special: '%E' == 'prop_ragdoll' OK
[2365] Test Special: '%E' == 'prop_physics_multiplayer' OK
[2366] Test Special: '%E' == 'prop_physics_multiplayer' OK
[2367] Test Special: '%E' == 'func_brush' OK
[2368] Test Special: '%E' == 'prop_dynamic' OK
[2369] Test Special: '%E' == 'func_brush' OK
[2370] Test Special: '%E' == 'prop_dynamic' OK
[2371] Test Special: '%E' == 'prop_dynamic' OK
[2372] Test Special: '%E' == 'func_areaportalwindow' OK
[2373] Test Special: '%E' == 'func_areaportalwindow' OK
[2374] Test Special: '%E' == 'func_areaportalwindow' OK
[2375] Test Special: '%E' == 'func_areaportalwindow' OK
[2376] Test Special: '%E' == 'func_areaportalwindow' OK
[2377] Test Special: '%E' == 'func_illusionary' OK
[2378] Test Special: '%E' == 'func_illusionary' OK
[2379] Test Special: '%E' == 'func_illusionary' OK
[2380] Test Special: '%E' == 'func_illusionary' OK
[2381] Test Special: '%E' == 'func_illusionary' OK
[2382] Test Special: '%E' == 'music_manager' OK
[2383] Test Special: '%E' == 'light' OK
[2384] Test Special: '%E' == 'logic_auto' OK
[2385] Test Special: '%E' == 'light' OK
[2386] Test Special: '%E' == 'trigger_once' OK
[2387] Test Special: '%E' == 'prop_dynamic' OK
[2388] Test Special: '%E' == 'prop_dynamic' OK
[2389] Test Special: '%E' == 'prop_dynamic' OK
[2390] Test Special: '%E' == 'env_soundscape' OK
[2391] Test Special: '%E' == 'filter_activator_name' OK
[2392] Test Special: '%E' == 'point_template' OK
[2393] Test Special: '%E' == 'func_lod' OK
[2394] Test Special: '%E' == 'prop_dynamic' OK
[2395] Test Special: '%E' == 'func_illusionary' OK
[2396] Test Special: '%E' == 'env_sprite' OK
[2397] Test Special: '%E' == 'env_sprite' OK
[2398] Test Special: '%E' == 'infodecal' OK
[2399] Test Special: '%E' == 'infodecal' OK
[2400] Test Special: '%E' == 'me_axe_fire' OK
[2401] Test Special: '%E' == 'logic_case' OK
[2402] Test Special: '%E' == 'point_template' OK
[2403] Test Special: '%E' == 'point_template' OK
[2404] Test Special: '%E' == 'point_template' OK
[2405] Test Special: '%E' == 'point_template' OK
[2406] Test Special: '%E' == 'point_template' OK
[2407] Test Special: '%E' == 'func_zombie_spawn' OK
[2408] Test Special: '%E' == 'npc_template_maker' OK
[2409] Test Special: '%E' == 'info_npc_spawn_destination' OK
[2410] Test Special: '%E' == 'filter_multi' OK
[2411] Test Special: '%E' == 'filter_activator_name' OK
[2412] Test Special: '%E' == 'point_template' OK
[2413] Test Special: '%E' == 'logic_relay' OK
[2414] Test Special: '%E' == 'point_template' OK
[2415] Test Special: '%E' == 'func_brush' OK
[2416] Test Special: '%E' == 'func_brush' OK
[2417] Test Special: '%E' == 'func_brush' OK
[2418] Test Special: '%E' == 'infodecal' OK
[2419] Test Special: '%E' == 'random_spawner' OK
[2420] Test Special: '%E' == 'random_spawner' OK
[2421] Test Special: '%E' == 'light' OK
[2422] Test Special: '%E' == 'random_spawner' OK
[2423] Test Special: '%E' == 'random_spawner' OK
[2424] Test Special: '%E' == 'random_spawner' OK
[2425] Test Special: '%E' == 'func_clip_vphysics' OK
[2426] Test Special: '%E' == 'prop_dynamic' OK
[2427] Test Special: '%E' == 'func_clip_vphysics' OK
[2428] Test Special: '%E' == 'random_spawner' OK
[2429] Test Special: '%E' == 'random_spawner' OK
[2430] Test Special: '%E' == 'func_brush' OK
[2431] Test Special: '%E' == 'func_brush' OK
[2432] Test Special: '%E' == 'random_spawner' OK
[2433] Test Special: '%E' == 'func_brush' OK
[2434] Test Special: '%E' == 'point_template' OK
[2435] Test Special: '%E' == 'point_template' OK
[2436] Test Special: '%E' == 'logic_relay' OK
[2437] Test Special: '%E' == 'point_template' OK
[2438] Test Special: '%E' == 'point_template' OK
[2439] Test Special: '%E' == 'trigger_multiple' OK
[2440] Test Special: '%E' == 'logic_relay' OK
[2441] Test Special: '%E' == 'func_brush' OK
[2442] Test Special: '%E' == 'infodecal' OK
[2443] Test Special: '%E' == 'point_template' OK
[2444] Test Special: '%E' == 'logic_relay' OK
[2445] Test Special: '%E' == 'trigger_once' OK
[2446] Test Special: '%E' == 'trigger_multiple' OK
[2447] Test Special: '%E' == 'point_template' OK
[2448] Test Special: '%E' == 'point_template' OK
[2449] Test Special: '%E' == 'point_template' OK
[2450] Test Special: '%E' == 'logic_relay' OK
[2451] Test Special: '%E' == 'point_template' OK
[2452] Test Special: '%E' == 'logic_relay' OK
[2453] Test Special: '%E' == 'logic_relay' OK
[2454] Test Special: '%E' == 'trigger_multiple' OK
[2455] Test Special: '%E' == 'point_template' OK
[2456] Test Special: '%E' == 'point_template' OK
[2457] Test Special: '%E' == 'logic_relay' OK
[2458] Test Special: '%E' == 'logic_relay' OK
[2459] Test Special: '%E' == 'logic_relay' OK
[2460] Test Special: '%E' == 'logic_relay' OK
[2461] Test Special: '%E' == 'trigger_multiple' OK
[2462] Test Special: '%E' == 'point_template' OK
[2463] Test Special: '%E' == 'logic_relay' OK
[2464] Test Special: '%E' == 'logic_relay' OK
[2465] Test Special: '%E' == 'point_template' OK
[2466] Test Special: '%E' == 'logic_relay' OK
[2467] Test Special: '%E' == 'infodecal' OK
[2468] Test Special: '%E' == 'random_spawner' OK
[2469] Test Special: '%E' == 'point_template' OK
[2470] Test Special: '%E' == 'point_template' OK
[2471] Test Special: '%E' == 'point_template' OK
[2472] Test Special: '%E' == 'logic_relay' OK
[2473] Test Special: '%E' == 'logic_relay' OK
[2474] Test Special: '%E' == 'trigger_multiple' OK
[2475] Test Special: '%E' == 'func_zombie_spawn' OK
[2476] Test Special: '%E' == 'npc_template_maker' OK
[2477] Test Special: '%E' == 'random_spawner' OK
[2478] Test Special: '%E' == 'random_spawner' OK
[2479] Test Special: '%E' == 'func_zombie_spawn' OK
[2480] Test Special: '%E' == 'func_zombie_spawn' OK
[2481] Test Special: '%E' == 'infodecal' OK
[2482] Test Special: '%E' == 'infodecal' OK
[2483] Test Special: '%E' == 'infodecal' OK
[2484] Test Special: '%E' == 'infodecal' OK
[2485] Test Special: '%E' == 'prop_dynamic' OK
[2486] Test Special: '%E' == 'prop_dynamic' OK
[2487] Test Special: '%E' == 'prop_dynamic' OK
[2488] Test Special: '%E' == 'func_brush' OK
[2489] Test Special: '%E' == 'logic_case' OK
[2490] Test Special: '%E' == 'point_template' OK
[2491] Test Special: '%E' == 'logic_case' OK
[2492] Test Special: '%E' == 'logic_relay' OK
[2493] Test Special: '%E' == 'point_template' OK
[2494] Test Special: '%E' == 'func_brush' OK
[2495] Test Special: '%E' == 'infodecal' OK
[2496] Test Special: '%E' == 'prop_physics' OK
[2497] Test Special: '%E' == 'prop_physics' OK
[2498] Test Special: '%E' == 'prop_physics' OK
[2499] Test Special: '%E' == 'prop_physics' OK
[2500] Test Special: '%E' == 'ambient_generic' OK
[2501] Test Special: '%E' == 'point_template' OK
[2502] Test Special: '%E' == 'infodecal' OK
[2503] Test Special: '%E' == 'infodecal' OK
[2504] Test Special: '%E' == 'infodecal' OK
[2505] Test Special: '%E' == 'infodecal' OK
[2506] Test Special: '%E' == 'infodecal' OK
[2507] Test Special: '%E' == 'infodecal' OK
[2508] Test Special: '%E' == 'infodecal' OK
[2509] Test Special: '%E' == 'infodecal' OK
[2510] Test Special: '%E' == 'infodecal' OK
[2511] Test Special: '%E' == 'infodecal' OK
[2512] Test Special: '%E' == 'infodecal' OK
[2513] Test Special: '%E' == 'logic_relay' OK
[2514] Test Special: '%E' == 'logic_case' OK
[2515] Test Special: '%E' == 'point_teleport' OK
[2516] Test Special: '%E' == 'prop_dynamic' OK
[2517] Test Special: '%E' == 'logic_relay' OK
[2518] Test Special: '%E' == 'logic_relay' OK
[2519] Test Special: '%E' == 'func_physbox' OK
[2520] Test Special: '%E' == 'point_template' OK
[2521] Test Special: '%E' == 'trigger_once' OK
[2522] Test Special: '%E' == 'func_brush' OK
[2523] Test Special: '%E' == 'func_door_rotating' OK
[2524] Test Special: '%E' == 'prop_dynamic' OK
[2525] Test Special: '%E' == 'func_brush' OK
[2526] Test Special: '%E' == 'env_fire' OK
[2527] Test Special: '%E' == 'prop_dynamic' OK
[2528] Test Special: '%E' == 'prop_dynamic' OK
[2529] Test Special: '%E' == 'trigger_hurt' OK
[2530] Test Special: '%E' == 'trigger_once' OK
[2531] Test Special: '%E' == 'ambient_generic' OK
[2532] Test Special: '%E' == 'trigger_once' OK
[2533] Test Special: '%E' == 'point_template' OK
[2534] Test Special: '%E' == 'trigger_once' OK
[2535] Test Special: '%E' == 'point_template' OK
[2536] Test Special: '%E' == 'point_template' OK
[2537] Test Special: '%E' == 'trigger_once' OK
[2538] Test Special: '%E' == 'logic_case' OK
[2539] Test Special: '%E' == 'prop_physics' OK
[2540] Test Special: '%E' == 'prop_dynamic' OK
[2541] Test Special: '%E' == 'filter_activator_name' OK
[2542] Test Special: '%E' == 'point_template' OK
[2543] Test Special: '%E' == 'filter_activator_name' OK
[2544] Test Special: '%E' == 'trigger_push' OK
[2545] Test Special: '%E' == 'point_template' OK
[2546] Test Special: '%E' == 'point_template' OK
[2547] Test Special: '%E' == 'func_brush' OK
[2548] Test Special: '%E' == 'filter_activator_name' OK
[2549] Test Special: '%E' == 'trigger_once' OK
[2550] Test Special: '%E' == 'logic_case' OK
[2551] Test Special: '%E' == 'point_template' OK
[2552] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2553] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2554] Test Special: '%E' == 'trigger_once' OK
[2555] Test Special: '%E' == 'trigger_once' OK
[2556] Test Special: '%E' == 'trigger_once' OK
[2557] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2558] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2559] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2560] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2561] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2562] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2563] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2564] Test Special: '%E' == 'nmrih_objective_boundary' OK
[2565] Test Special: '%E' == 'trigger_once' OK
[2566] Test Special: '%E' == 'func_breakable' OK
[2567] Test Special: '%E' == 'func_clip_vphysics' OK
[2568] Test Special: '%E' == 'prop_dynamic' OK
[2569] Test Special: '%E' == 'item_ammo_box' OK
[2570] Test Special: '%E' == 'tool_flare_gun' OK
[2571] Test Special: '%E' == 'me_kitknife' OK
[2572] Test Special: '%E' == 'item_first_aid' OK
[2573] Test Special: '%E' == 'me_shovel' OK
[2574] Test Special: '%E' == 'me_shovel' OK
[2575] Test Special: '%E' == 'me_chainsaw' OK
[2576] Test Special: '%E' == 'item_first_aid' OK
[2577] Test Special: '%E' == 'item_walkietalkie' OK
[2578] Test Special: '%E' == 'me_chainsaw' OK
[2579] Test Special: '%E' == 'me_sledge' OK
[2580] Test Special: '%E' == 'me_pickaxe' OK
[2581] Test Special: '%E' == 'me_pipe_lead' OK
[2582] Test Special: '%E' == 'item_maglite' OK
[2583] Test Special: '%E' == 'exp_grenade' OK
[2584] Test Special: '%E' == 'me_wrench' OK
[2585] Test Special: '%E' == 'tool_barricade' OK
[2586] Test Special: '%E' == 'item_ammo_box' OK
[2587] Test Special: '%E' == 'item_ammo_box' OK
[2588] Test Special: '%E' == 'me_pipe_lead' OK
[2589] Test Special: '%E' == 'exp_grenade' OK
[2590] Test Special: '%E' == 'item_pills' OK
[2591] Test Special: '%E' == 'item_ammo_box' OK
[2592] Test Special: '%E' == 'fa_jae700' OK
[2593] Test Special: '%E' == 'item_ammo_box' OK
[2594] Test Special: '%E' == 'item_ammo_box' OK
[2595] Test Special: '%E' == 'fa_glock17' OK
[2596] Test Special: '%E' == 'item_ammo_box' OK
[2597] Test Special: '%E' == 'item_ammo_box' OK
[2598] Test Special: '%E' == 'me_pipe_lead' OK
[2599] Test Special: '%E' == 'item_ammo_box' OK
[2600] Test Special: '%E' == 'item_bandages' OK
[2601] Test Special: '%E' == 'item_ammo_box' OK
[2602] Test Special: '%E' == 'fa_cz858' OK
[2603] Test Special: '%E' == 'tool_extinguisher' OK
[2604] Test Special: '%E' == 'exp_tnt' OK
[2605] Test Special: '%E' == 'tool_welder' OK
[2606] Test Special: '%E' == 'tool_welder' OK
[2607] Test Special: '%E' == 'item_ammo_box' OK
[2608] Test Special: '%E' == 'exp_molotov' OK
[2609] Test Special: '%E' == 'item_walkietalkie' OK
[2610] Test Special: '%E' == 'item_walkietalkie' OK
[2611] Test Special: '%E' == 'item_walkietalkie' OK
[2612] Test Special: '%E' == 'fa_m16a4_carryhandle' OK
[2613] Test Special: '%E' == 'item_ammo_box' OK
[2614] Test Special: '%E' == 'item_ammo_box' OK
[2615] Test Special: '%E' == 'item_ammo_box' OK
[2616] Test Special: '%E' == 'me_fubar' OK
[2617] Test Special: '%E' == 'me_hatchet' OK
[2618] Test Special: '%E' == 'me_pipe_lead' OK
[2619] Test Special: '%E' == 'me_fubar' OK
[2620] Test Special: '%E' == 'me_wrench' OK
[2621] Test Special: '%E' == 'item_ammo_box' OK
[2622] Test Special: '%E' == 'item_ammo_box' OK
[2623] Test Special: '%E' == 'fa_1911' OK
[2624] Test Special: '%E' == 'me_crowbar' OK
[2625] Test Special: '%E' == 'me_wrench' OK
[2626] Test Special: '%E' == 'me_fubar' OK
[2627] Test Special: '%E' == 'me_shovel' OK
[2628] Test Special: '%E' == 'me_sledge' OK
[2629] Test Special: '%E' == 'me_pickaxe' OK
[2630] Test Special: '%E' == 'item_bandages' OK
[2631] Test Special: '%E' == 'phys_bone_follower' OK
[2632] Test Special: '%E' == 'phys_bone_follower' OK
[2633] Test Special: '%E' == 'phys_bone_follower' OK
[2634] Test Special: '%E' == 'phys_bone_follower' OK
[2635] Test Special: '%E' == 'phys_bone_follower' OK
[2636] Test Special: '%E' == 'phys_bone_follower' OK
[2637] Test Special: '%E' == 'phys_bone_follower' OK
[2638] Test Special: '%E' == 'phys_bone_follower' OK
[2639] Test Special: '%E' == 'phys_bone_follower' OK
[2640] Test Special: '%E' == 'phys_bone_follower' OK
[2641] Test Special: '%E' == 'phys_bone_follower' OK
[2642] Test Special: '%E' == 'phys_bone_follower' OK
[2643] Test Special: '%E' == 'phys_bone_follower' OK
[2644] Test Special: '%E' == 'phys_bone_follower' OK
[2645] Test Special: '%E' == 'phys_bone_follower' OK
[2646] Test Special: '%E' == 'phys_bone_follower' OK
[2647] Test Special: '%E' == 'phys_bone_follower' OK
[2648] Test Special: '%E' == 'phys_bone_follower' OK
[2649] Test Special: '%E' == 'phys_bone_follower' OK
[2650] Test Special: '%E' == 'phys_bone_follower' OK
[2651] Test Special: '%E' == 'phys_bone_follower' OK
[2652] Test Special: '%E' == 'phys_bone_follower' OK
[2653] Test Special: '%E' == 'phys_bone_follower' OK
[2654] Test Special: '%E' == 'phys_bone_follower' OK
[2655] Test Special: '%E' == 'spotlight_end' OK
[2656] Test Special: '%E' == 'beam' OK
[2657] Test Special: '%E' == 'spotlight_end' OK
[2658] Test Special: '%E' == 'beam' OK
[2659] Test Special: '%E' == '_firesmoke' OK
[2660] Test String: ''%s'' == ''Some String Text'' OK
[2661] Test String: ''%.s'' == '''' OK
[2662] Test String: ''%.0s'' == '''' OK
[2663] Test String: ''%.10s'' == ''Some Strin'' OK
[2664] Test String: ''%.16s'' == ''Some String Text'' OK
[2665] Test String: ''%.32s'' == ''Some String Text'' OK
[2666] Test String: ''%0s'' == ''Some String Text'' OK
[2667] Test String: ''%10s'' == ''Some String Text'' OK
[2668] Test String: ''%16s'' == ''Some String Text'' OK
[2669] Test String: ''%32s'' == ''                Some String Text'' OK
[2670] Test String: ''%0.0s'' == '''' OK
[2671] Test String: ''%0.10s'' == ''Some Strin'' OK
[2672] Test String: ''%0.16s'' == ''Some String Text'' OK
[2673] Test String: ''%0.32s'' == ''Some String Text'' OK
[2674] Test String: ''%10.0s'' == ''          '' OK
[2675] Test String: ''%10.10s'' == ''Some Strin'' OK
[2676] Test String: ''%10.16s'' == ''Some String Text'' OK
[2677] Test String: ''%10.32s'' == ''Some String Text'' OK
[2678] Test String: ''%16.0s'' == ''                '' OK
[2679] Test String: ''%16.10s'' == ''      Some Strin'' OK
[2680] Test String: ''%16.16s'' == ''Some String Text'' OK
[2681] Test String: ''%16.32s'' == ''Some String Text'' OK
[2682] Test String: ''%32.0s'' == ''                                '' OK
[2683] Test String: ''%32.10s'' == ''                      Some Strin'' OK
[2684] Test String: ''%32.16s'' == ''                Some String Text'' OK
[2685] Test String: ''%32.32s'' == ''                Some String Text'' OK
[2686] Test String: ''%0s'' == ''Some String Text'' OK
[2687] Test String: ''%-s'' == ''Some String Text'' OK
[2688] Test String: ''%0-s'' == ''Some String Text'' OK
[2689] Test String: ''%0.s'' == '''' OK
[2690] Test String: ''%0.0s'' == '''' OK
[2691] Test String: ''%0.10s'' == ''Some Strin'' OK
[2692] Test String: ''%0.16s'' == ''Some String Text'' OK
[2693] Test String: ''%0.32s'' == ''Some String Text'' OK
[2694] Test String: ''%-.s'' == '''' OK
[2695] Test String: ''%-.0s'' == '''' OK
[2696] Test String: ''%-.10s'' == ''Some Strin'' OK
[2697] Test String: ''%-.16s'' == ''Some String Text'' OK
[2698] Test String: ''%-.32s'' == ''Some String Text'' OK
[2699] Test String: ''%-0.s'' == '''' OK
[2700] Test String: ''%-0.0s'' == '''' OK
[2701] Test String: ''%-0.10s'' == ''Some Strin'' OK
[2702] Test String: ''%-0.16s'' == ''Some String Text'' OK
[2703] Test String: ''%-0.32s'' == ''Some String Text'' OK
[2704] Test String: ''%0s'' == ''Some String Text'' OK
[2705] Test String: ''%00s'' == ''Some String Text'' OK
[2706] Test String: ''%010s'' == ''Some String Text'' OK
[2707] Test String: ''%016s'' == ''Some String Text'' OK
[2708] Test String: ''%032s'' == ''                Some String Text'' OK
[2709] Test String: ''%-s'' == ''Some String Text'' OK
[2710] Test String: ''%-0s'' == ''Some String Text'' OK
[2711] Test String: ''%-10s'' == ''Some String Text'' OK
[2712] Test String: ''%-16s'' == ''Some String Text'' OK
[2713] Test String: ''%-32s'' == ''Some String Text                '' OK
[2714] Test String: ''%-0s'' == ''Some String Text'' OK
[2715] Test String: ''%-00s'' == ''Some String Text'' OK
[2716] Test String: ''%-010s'' == ''Some String Text'' OK
[2717] Test String: ''%-016s'' == ''Some String Text'' OK
[2718] Test String: ''%-032s'' == ''Some String Text                '' OK
[2719] Test String: ''%00.s'' == '''' OK
[2720] Test String: ''%00.0s'' == '''' OK
[2721] Test String: ''%00.10s'' == ''Some Strin'' OK
[2722] Test String: ''%00.16s'' == ''Some String Text'' OK
[2723] Test String: ''%00.32s'' == ''Some String Text'' OK
[2724] Test String: ''%010.s'' == ''          '' OK
[2725] Test String: ''%010.0s'' == ''          '' OK
[2726] Test String: ''%010.10s'' == ''Some Strin'' OK
[2727] Test String: ''%010.16s'' == ''Some String Text'' OK
[2728] Test String: ''%010.32s'' == ''Some String Text'' OK
[2729] Test String: ''%016.s'' == ''                '' OK
[2730] Test String: ''%016.0s'' == ''                '' OK
[2731] Test String: ''%016.10s'' == ''      Some Strin'' OK
[2732] Test String: ''%016.16s'' == ''Some String Text'' OK
[2733] Test String: ''%016.32s'' == ''Some String Text'' OK
[2734] Test String: ''%032.s'' == ''                                '' OK
[2735] Test String: ''%032.0s'' == ''                                '' OK
[2736] Test String: ''%032.10s'' == ''                      Some Strin'' OK
[2737] Test String: ''%032.16s'' == ''                Some String Text'' OK
[2738] Test String: ''%032.32s'' == ''                Some String Text'' OK
[2739] Test String: ''%-0.s'' == '''' OK
[2740] Test String: ''%-0.0s'' == '''' OK
[2741] Test String: ''%-0.10s'' == ''Some Strin'' OK
[2742] Test String: ''%-0.16s'' == ''Some String Text'' OK
[2743] Test String: ''%-0.32s'' == ''Some String Text'' OK
[2744] Test String: ''%-10.s'' == ''          '' OK
[2745] Test String: ''%-10.0s'' == ''          '' OK
[2746] Test String: ''%-10.10s'' == ''Some Strin'' OK
[2747] Test String: ''%-10.16s'' == ''Some String Text'' OK
[2748] Test String: ''%-10.32s'' == ''Some String Text'' OK
[2749] Test String: ''%-16.s'' == ''                '' OK
[2750] Test String: ''%-16.0s'' == ''                '' OK
[2751] Test String: ''%-16.10s'' == ''Some Strin      '' OK
[2752] Test String: ''%-16.16s'' == ''Some String Text'' OK
[2753] Test String: ''%-16.32s'' == ''Some String Text'' OK
[2754] Test String: ''%-32.s'' == ''                                '' OK
[2755] Test String: ''%-32.0s'' == ''                                '' OK
[2756] Test String: ''%-32.10s'' == ''Some Strin                      '' OK
[2757] Test String: ''%-32.16s'' == ''Some String Text                '' OK
[2758] Test String: ''%-32.32s'' == ''Some String Text                '' OK
[2759] Test String: ''%-00.s'' == '''' OK
[2760] Test String: ''%-00.0s'' == '''' OK
[2761] Test String: ''%-00.10s'' == ''Some Strin'' OK
[2762] Test String: ''%-00.16s'' == ''Some String Text'' OK
[2763] Test String: ''%-00.32s'' == ''Some String Text'' OK
[2764] Test String: ''%-010.s'' == ''          '' OK
[2765] Test String: ''%-010.0s'' == ''          '' OK
[2766] Test String: ''%-010.10s'' == ''Some Strin'' OK
[2767] Test String: ''%-010.16s'' == ''Some String Text'' OK
[2768] Test String: ''%-010.32s'' == ''Some String Text'' OK
[2769] Test String: ''%-016.s'' == ''                '' OK
[2770] Test String: ''%-016.0s'' == ''                '' OK
[2771] Test String: ''%-016.10s'' == ''Some Strin      '' OK
[2772] Test String: ''%-016.16s'' == ''Some String Text'' OK
[2773] Test String: ''%-016.32s'' == ''Some String Text'' OK
[2774] Test String: ''%-032.s'' == ''                                '' OK
[2775] Test String: ''%-032.0s'' == ''                                '' OK
[2776] Test String: ''%-032.10s'' == ''Some Strin                      '' OK
[2777] Test String: ''%-032.16s'' == ''Some String Text                '' OK
[2778] Test String: ''%-032.32s'' == ''Some String Text                '' OK
[2779] Test String: ''%s'' == '''' OK
[2780] Test String: ''%s'' == '''' OK
[2781] Test String: ''%-256s'' == ''Some String Text                                                                                                                                                                                                                                                '' OK
[2782] Test Translates: ''%T'' == ''You cannot target this player.'' OK
[2783] Test Translates: ''%T'' == ''(ADMINS) Console'' OK
[2784] Test Translates: ''%T'' == ''You must wait 77777777 seconds before starting another vote.'' OK
[2785] Test Translates: ''%T'' == ''player1 has chosen option2.'' OK
[2786] Test Translates: ''%.T'' == ''You cannot target this player.'' OK
[2787] Test Translates: ''%.0T'' == ''You cannot target this player.'' OK
[2788] Test Translates: ''%.32T'' == ''You cannot target this player.'' OK
[2789] Test Translates: ''%T'' == ''You cannot target this player.'' OK
[2790] Test Translates: ''%0T'' == ''You cannot target this player.'' OK
[2791] Test Translates: ''%32T'' == ''You cannot target this player.'' OK
[2792] Test Translates: ''%0.T'' == ''You cannot target this player.'' OK
[2793] Test Translates: ''%0.0T'' == ''You cannot target this player.'' OK
[2794] Test Translates: ''%0.32T'' == ''You cannot target this player.'' OK
[2795] Test Translates: ''%32.T'' == ''You cannot target this player.'' OK
[2796] Test Translates: ''%32.0T'' == ''You cannot target this player.'' OK
[2797] Test Translates: ''%32.32T'' == ''You cannot target this player.'' OK
[2798] Test Translates: ''%0T'' == ''You cannot target this player.'' OK
[2799] Test Translates: ''%-T'' == ''You cannot target this player.'' OK
[2800] Test Translates: ''%-0T'' == ''You cannot target this player.'' OK
[2801] Test Translates: ''%0.T'' == ''You cannot target this player.'' OK
[2802] Test Translates: ''%0.0T'' == ''You cannot target this player.'' OK
[2803] Test Translates: ''%0.32T'' == ''You cannot target this player.'' OK
[2804] Test Translates: ''%-.T'' == ''You cannot target this player.'' OK
[2805] Test Translates: ''%-.0T'' == ''You cannot target this player.'' OK
[2806] Test Translates: ''%-.32T'' == ''You cannot target this player.'' OK
[2807] Test Translates: ''%-0.T'' == ''You cannot target this player.'' OK
[2808] Test Translates: ''%-0.0T'' == ''You cannot target this player.'' OK
[2809] Test Translates: ''%-0.32T'' == ''You cannot target this player.'' OK
[2810] Test Translates: ''%0T'' == ''You cannot target this player.'' OK
[2811] Test Translates: ''%00T'' == ''You cannot target this player.'' OK
[2812] Test Translates: ''%032T'' == ''You cannot target this player.'' OK
[2813] Test Translates: ''%-T'' == ''You cannot target this player.'' OK
[2814] Test Translates: ''%-0T'' == ''You cannot target this player.'' OK
[2815] Test Translates: ''%-32T'' == ''You cannot target this player.'' OK
[2816] Test Translates: ''%-0T'' == ''You cannot target this player.'' OK
[2817] Test Translates: ''%-00T'' == ''You cannot target this player.'' OK
[2818] Test Translates: ''%-032T'' == ''You cannot target this player.'' OK
[2819] Test Translates: ''%00.T'' == ''You cannot target this player.'' OK
[2820] Test Translates: ''%00.0T'' == ''You cannot target this player.'' OK
[2821] Test Translates: ''%00.32T'' == ''You cannot target this player.'' OK
[2822] Test Translates: ''%032.T'' == ''You cannot target this player.'' OK
[2823] Test Translates: ''%032.0T'' == ''You cannot target this player.'' OK
[2824] Test Translates: ''%032.32T'' == ''You cannot target this player.'' OK
[2825] Test Translates: ''%-0.T'' == ''You cannot target this player.'' OK
[2826] Test Translates: ''%-0.0T'' == ''You cannot target this player.'' OK
[2827] Test Translates: ''%-0.32T'' == ''You cannot target this player.'' OK
[2828] Test Translates: ''%-32.T'' == ''You cannot target this player.'' OK
[2829] Test Translates: ''%-32.0T'' == ''You cannot target this player.'' OK
[2830] Test Translates: ''%-32.32T'' == ''You cannot target this player.'' OK
[2831] Test Translates: ''%-00.T'' == ''You cannot target this player.'' OK
[2832] Test Translates: ''%-00.0T'' == ''You cannot target this player.'' OK
[2833] Test Translates: ''%-00.32T'' == ''You cannot target this player.'' OK
[2834] Test Translates: ''%-032.T'' == ''You cannot target this player.'' OK
[2835] Test Translates: ''%-032.0T'' == ''You cannot target this player.'' OK
[2836] Test Translates: ''%-032.32T'' == ''You cannot target this player.'' OK
[2837] Test Translates: Server Language == 7 OK
[2838] Test Translates: ''%t'' == ''You cannot target this player.'' OK
[2839] Test Translates: ''%t'' == ''(ADMINS) Console'' OK
[2840] Test Translates: ''%t'' == ''You must wait 77777777 seconds before starting another vote.'' OK
[2841] Test Translates: ''%t'' == ''player1 has chosen option2.'' OK
[2842] Test Translates: ''%.t'' == ''You cannot target this player.'' OK
[2843] Test Translates: ''%.0t'' == ''You cannot target this player.'' OK
[2844] Test Translates: ''%.32t'' == ''You cannot target this player.'' OK
[2845] Test Translates: ''%t'' == ''You cannot target this player.'' OK
[2846] Test Translates: ''%0t'' == ''You cannot target this player.'' OK
[2847] Test Translates: ''%32t'' == ''You cannot target this player.'' OK
[2848] Test Translates: ''%0.t'' == ''You cannot target this player.'' OK
[2849] Test Translates: ''%0.0t'' == ''You cannot target this player.'' OK
[2850] Test Translates: ''%0.32t'' == ''You cannot target this player.'' OK
[2851] Test Translates: ''%32.t'' == ''You cannot target this player.'' OK
[2852] Test Translates: ''%32.0t'' == ''You cannot target this player.'' OK
[2853] Test Translates: ''%32.32t'' == ''You cannot target this player.'' OK
[2854] Test Translates: ''%0t'' == ''You cannot target this player.'' OK
[2855] Test Translates: ''%-t'' == ''You cannot target this player.'' OK
[2856] Test Translates: ''%-0t'' == ''You cannot target this player.'' OK
[2857] Test Translates: ''%0.t'' == ''You cannot target this player.'' OK
[2858] Test Translates: ''%0.0t'' == ''You cannot target this player.'' OK
[2859] Test Translates: ''%0.32t'' == ''You cannot target this player.'' OK
[2860] Test Translates: ''%-.t'' == ''You cannot target this player.'' OK
[2861] Test Translates: ''%-.0t'' == ''You cannot target this player.'' OK
[2862] Test Translates: ''%-.32t'' == ''You cannot target this player.'' OK
[2863] Test Translates: ''%-0.t'' == ''You cannot target this player.'' OK
[2864] Test Translates: ''%-0.0t'' == ''You cannot target this player.'' OK
[2865] Test Translates: ''%-0.32t'' == ''You cannot target this player.'' OK
[2866] Test Translates: ''%0t'' == ''You cannot target this player.'' OK
[2867] Test Translates: ''%00t'' == ''You cannot target this player.'' OK
[2868] Test Translates: ''%032t'' == ''You cannot target this player.'' OK
[2869] Test Translates: ''%-t'' == ''You cannot target this player.'' OK
[2870] Test Translates: ''%-0t'' == ''You cannot target this player.'' OK
[2871] Test Translates: ''%-32t'' == ''You cannot target this player.'' OK
[2872] Test Translates: ''%-0t'' == ''You cannot target this player.'' OK
[2873] Test Translates: ''%-00t'' == ''You cannot target this player.'' OK
[2874] Test Translates: ''%-032t'' == ''You cannot target this player.'' OK
[2875] Test Translates: ''%00.t'' == ''You cannot target this player.'' OK
[2876] Test Translates: ''%00.0t'' == ''You cannot target this player.'' OK
[2877] Test Translates: ''%00.32t'' == ''You cannot target this player.'' OK
[2878] Test Translates: ''%032.t'' == ''You cannot target this player.'' OK
[2879] Test Translates: ''%032.0t'' == ''You cannot target this player.'' OK
[2880] Test Translates: ''%032.32t'' == ''You cannot target this player.'' OK
[2881] Test Translates: ''%-0.t'' == ''You cannot target this player.'' OK
[2882] Test Translates: ''%-0.0t'' == ''You cannot target this player.'' OK
[2883] Test Translates: ''%-0.32t'' == ''You cannot target this player.'' OK
[2884] Test Translates: ''%-32.t'' == ''You cannot target this player.'' OK
[2885] Test Translates: ''%-32.0t'' == ''You cannot target this player.'' OK
[2886] Test Translates: ''%-32.32t'' == ''You cannot target this player.'' OK
[2887] Test Translates: ''%-00.t'' == ''You cannot target this player.'' OK
[2888] Test Translates: ''%-00.0t'' == ''You cannot target this player.'' OK
[2889] Test Translates: ''%-00.32t'' == ''You cannot target this player.'' OK
[2890] Test Translates: ''%-032.t'' == ''You cannot target this player.'' OK
[2891] Test Translates: ''%-032.0t'' == ''You cannot target this player.'' OK
[2892] Test Translates: ''%-032.32t'' == ''You cannot target this player.'' OK
[2893] Test Hex: ''%X'' == ''0'' OK
[2894] Test Hex: ''%X'' == ''12D687'' OK
[2895] Test Hex: ''%X'' == ''7FFFFFFF'' OK
[2896] Test Hex: ''%X'' == ''FFFFFFFF'' OK
[2897] Test Hex: ''%X'' == ''80000000'' OK
[2898] Test Hex: ''%X'' == ''7FFFFFFF'' OK
[2899] Test Hex: ''%x'' == ''0'' OK
[2900] Test Hex: ''%x'' == ''12d687'' OK
[2901] Test Hex: ''%x'' == ''7fffffff'' OK
[2902] Test Hex: ''%x'' == ''ffffffff'' OK
[2903] Test Hex: ''%x'' == ''80000000'' OK
[2904] Test Hex: ''%x'' == ''7fffffff'' OK
[2905] Test Hex: ''%.0X'' == ''12D687'' OK
[2906] Test Hex: ''%.3X'' == ''12D687'' OK
[2907] Test Hex: ''%.6X'' == ''12D687'' OK
[2908] Test Hex: ''%.9X'' == ''12D687'' OK
[2909] Test Hex: ''%.20X'' == ''12D687'' OK
[2910] Test Hex: ''%.0x'' == ''12d687'' OK
[2911] Test Hex: ''%.3x'' == ''12d687'' OK
[2912] Test Hex: ''%.6x'' == ''12d687'' OK
[2913] Test Hex: ''%.9x'' == ''12d687'' OK
[2914] Test Hex: ''%.20x'' == ''12d687'' OK
[2915] Test Hex: ''%0X'' == ''12D687'' OK
[2916] Test Hex: ''%3X'' == ''12D687'' OK
[2917] Test Hex: ''%6X'' == ''12D687'' OK
[2918] Test Hex: ''%9X'' == ''   12D687'' OK
[2919] Test Hex: ''%20X'' == ''              12D687'' OK
[2920] Test Hex: ''%0x'' == ''12d687'' OK
[2921] Test Hex: ''%3x'' == ''12d687'' OK
[2922] Test Hex: ''%6x'' == ''12d687'' OK
[2923] Test Hex: ''%9x'' == ''   12d687'' OK
[2924] Test Hex: ''%20x'' == ''              12d687'' OK
[2925] Test Hex: ''%0.0X'' == ''12D687'' OK
[2926] Test Hex: ''%0.3X'' == ''12D687'' OK
[2927] Test Hex: ''%0.6X'' == ''12D687'' OK
[2928] Test Hex: ''%0.9X'' == ''12D687'' OK
[2929] Test Hex: ''%3.0X'' == ''12D687'' OK
[2930] Test Hex: ''%3.3X'' == ''12D687'' OK
[2931] Test Hex: ''%3.6X'' == ''12D687'' OK
[2932] Test Hex: ''%3.9X'' == ''12D687'' OK
[2933] Test Hex: ''%6.0X'' == ''12D687'' OK
[2934] Test Hex: ''%6.3X'' == ''12D687'' OK
[2935] Test Hex: ''%6.6X'' == ''12D687'' OK
[2936] Test Hex: ''%6.9X'' == ''12D687'' OK
[2937] Test Hex: ''%9.0X'' == ''   12D687'' OK
[2938] Test Hex: ''%9.3X'' == ''   12D687'' OK
[2939] Test Hex: ''%9.6X'' == ''   12D687'' OK
[2940] Test Hex: ''%9.9X'' == ''   12D687'' OK
[2941] Test Hex: ''%20.0X'' == ''              12D687'' OK
[2942] Test Hex: ''%20.3X'' == ''              12D687'' OK
[2943] Test Hex: ''%20.6X'' == ''              12D687'' OK
[2944] Test Hex: ''%20.9X'' == ''              12D687'' OK
[2945] Test Hex: ''%0.0x'' == ''12d687'' OK
[2946] Test Hex: ''%0.3x'' == ''12d687'' OK
[2947] Test Hex: ''%0.6x'' == ''12d687'' OK
[2948] Test Hex: ''%0.9x'' == ''12d687'' OK
[2949] Test Hex: ''%3.0x'' == ''12d687'' OK
[2950] Test Hex: ''%3.3x'' == ''12d687'' OK
[2951] Test Hex: ''%3.6x'' == ''12d687'' OK
[2952] Test Hex: ''%3.9x'' == ''12d687'' OK
[2953] Test Hex: ''%6.0x'' == ''12d687'' OK
[2954] Test Hex: ''%6.3x'' == ''12d687'' OK
[2955] Test Hex: ''%6.6x'' == ''12d687'' OK
[2956] Test Hex: ''%6.9x'' == ''12d687'' OK
[2957] Test Hex: ''%9.0x'' == ''   12d687'' OK
[2958] Test Hex: ''%9.3x'' == ''   12d687'' OK
[2959] Test Hex: ''%9.6x'' == ''   12d687'' OK
[2960] Test Hex: ''%9.9x'' == ''   12d687'' OK
[2961] Test Hex: ''%20.0x'' == ''              12d687'' OK
[2962] Test Hex: ''%20.3x'' == ''              12d687'' OK
[2963] Test Hex: ''%20.6x'' == ''              12d687'' OK
[2964] Test Hex: ''%20.9x'' == ''              12d687'' OK
[2965] Test Hex: ''%0X'' == ''12D687'' OK
[2966] Test Hex: ''%-X'' == ''12D687'' OK
[2967] Test Hex: ''%0-X'' == ''12D687'' OK
[2968] Test Hex: ''%0x'' == ''12d687'' OK
[2969] Test Hex: ''%-x'' == ''12d687'' OK
[2970] Test Hex: ''%0-x'' == ''12d687'' OK
[2971] Test Hex: ''%0.X'' == ''12D687'' OK
[2972] Test Hex: ''%0.0X'' == ''12D687'' OK
[2973] Test Hex: ''%0.3X'' == ''12D687'' OK
[2974] Test Hex: ''%0.6X'' == ''12D687'' OK
[2975] Test Hex: ''%0.9X'' == ''12D687'' OK
[2976] Test Hex: ''%0.20X'' == ''12D687'' OK
[2977] Test Hex: ''%-.X'' == ''12D687'' OK
[2978] Test Hex: ''%-.0X'' == ''12D687'' OK
[2979] Test Hex: ''%-.3X'' == ''12D687'' OK
[2980] Test Hex: ''%-.6X'' == ''12D687'' OK
[2981] Test Hex: ''%-.9X'' == ''12D687'' OK
[2982] Test Hex: ''%-.20X'' == ''12D687'' OK
[2983] Test Hex: ''%-0.X'' == ''12D687'' OK
[2984] Test Hex: ''%-0.0X'' == ''12D687'' OK
[2985] Test Hex: ''%-0.3X'' == ''12D687'' OK
[2986] Test Hex: ''%-0.6X'' == ''12D687'' OK
[2987] Test Hex: ''%-0.9X'' == ''12D687'' OK
[2988] Test Hex: ''%-0.20X'' == ''12D687'' OK
[2989] Test Hex: ''%0.x'' == ''12d687'' OK
[2990] Test Hex: ''%0.0x'' == ''12d687'' OK
[2991] Test Hex: ''%0.3x'' == ''12d687'' OK
[2992] Test Hex: ''%0.6x'' == ''12d687'' OK
[2993] Test Hex: ''%0.9x'' == ''12d687'' OK
[2994] Test Hex: ''%0.20x'' == ''12d687'' OK
[2995] Test Hex: ''%-.x'' == ''12d687'' OK
[2996] Test Hex: ''%-.0x'' == ''12d687'' OK
[2997] Test Hex: ''%-.3x'' == ''12d687'' OK
[2998] Test Hex: ''%-.6x'' == ''12d687'' OK
[2999] Test Hex: ''%-.9x'' == ''12d687'' OK
[3000] Test Hex: ''%-.20x'' == ''12d687'' OK
[3001] Test Hex: ''%-0.x'' == ''12d687'' OK
[3002] Test Hex: ''%-0.0x'' == ''12d687'' OK
[3003] Test Hex: ''%-0.3x'' == ''12d687'' OK
[3004] Test Hex: ''%-0.6x'' == ''12d687'' OK
[3005] Test Hex: ''%-0.9x'' == ''12d687'' OK
[3006] Test Hex: ''%-0.20x'' == ''12d687'' OK
[3007] Test Hex: ''%00X'' == ''12D687'' OK
[3008] Test Hex: ''%03X'' == ''12D687'' OK
[3009] Test Hex: ''%06X'' == ''12D687'' OK
[3010] Test Hex: ''%09X'' == ''00012D687'' OK
[3011] Test Hex: ''%020X'' == ''0000000000000012D687'' OK
[3012] Test Hex: ''%-0X'' == ''12D687'' OK
[3013] Test Hex: ''%-3X'' == ''12D687'' OK
[3014] Test Hex: ''%-6X'' == ''12D687'' OK
[3015] Test Hex: ''%-9X'' == ''12D687   '' OK
[3016] Test Hex: ''%-20X'' == ''12D687              '' OK
[3017] Test Hex: ''%-00X'' == ''12D687'' OK
[3018] Test Hex: ''%-03X'' == ''12D687'' OK
[3019] Test Hex: ''%-06X'' == ''12D687'' OK
[3020] Test Hex: ''%-09X'' == ''12D687000'' OK
[3021] Test Hex: ''%-020X'' == ''12D68700000000000000'' OK
[3022] Test Hex: ''%00x'' == ''12d687'' OK
[3023] Test Hex: ''%03x'' == ''12d687'' OK
[3024] Test Hex: ''%06x'' == ''12d687'' OK
[3025] Test Hex: ''%09x'' == ''00012d687'' OK
[3026] Test Hex: ''%020x'' == ''0000000000000012d687'' OK
[3027] Test Hex: ''%-0x'' == ''12d687'' OK
[3028] Test Hex: ''%-3x'' == ''12d687'' OK
[3029] Test Hex: ''%-6x'' == ''12d687'' OK
[3030] Test Hex: ''%-9x'' == ''12d687   '' OK
[3031] Test Hex: ''%-20x'' == ''12d687              '' OK
[3032] Test Hex: ''%-00x'' == ''12d687'' OK
[3033] Test Hex: ''%-03x'' == ''12d687'' OK
[3034] Test Hex: ''%-06x'' == ''12d687'' OK
[3035] Test Hex: ''%-09x'' == ''12d687000'' OK
[3036] Test Hex: ''%-020x'' == ''12d68700000000000000'' OK
[3037] Test Hex: ''%00.X'' == ''12D687'' OK
[3038] Test Hex: ''%00.0X'' == ''12D687'' OK
[3039] Test Hex: ''%00.3X'' == ''12D687'' OK
[3040] Test Hex: ''%00.6X'' == ''12D687'' OK
[3041] Test Hex: ''%00.9X'' == ''12D687'' OK
[3042] Test Hex: ''%00.20X'' == ''12D687'' OK
[3043] Test Hex: ''%03.X'' == ''12D687'' OK
[3044] Test Hex: ''%03.0X'' == ''12D687'' OK
[3045] Test Hex: ''%03.3X'' == ''12D687'' OK
[3046] Test Hex: ''%03.6X'' == ''12D687'' OK
[3047] Test Hex: ''%03.9X'' == ''12D687'' OK
[3048] Test Hex: ''%03.20X'' == ''12D687'' OK
[3049] Test Hex: ''%06.X'' == ''12D687'' OK
[3050] Test Hex: ''%06.0X'' == ''12D687'' OK
[3051] Test Hex: ''%06.3X'' == ''12D687'' OK
[3052] Test Hex: ''%06.6X'' == ''12D687'' OK
[3053] Test Hex: ''%06.9X'' == ''12D687'' OK
[3054] Test Hex: ''%06.20X'' == ''12D687'' OK
[3055] Test Hex: ''%09.X'' == ''00012D687'' OK
[3056] Test Hex: ''%09.0X'' == ''00012D687'' OK
[3057] Test Hex: ''%09.3X'' == ''00012D687'' OK
[3058] Test Hex: ''%09.6X'' == ''00012D687'' OK
[3059] Test Hex: ''%09.9X'' == ''00012D687'' OK
[3060] Test Hex: ''%09.20X'' == ''00012D687'' OK
[3061] Test Hex: ''%020.X'' == ''0000000000000012D687'' OK
[3062] Test Hex: ''%020.0X'' == ''0000000000000012D687'' OK
[3063] Test Hex: ''%020.3X'' == ''0000000000000012D687'' OK
[3064] Test Hex: ''%020.6X'' == ''0000000000000012D687'' OK
[3065] Test Hex: ''%020.9X'' == ''0000000000000012D687'' OK
[3066] Test Hex: ''%020.20X'' == ''0000000000000012D687'' OK
[3067] Test Hex: ''%00.x'' == ''12d687'' OK
[3068] Test Hex: ''%00.0x'' == ''12d687'' OK
[3069] Test Hex: ''%00.3x'' == ''12d687'' OK
[3070] Test Hex: ''%00.6x'' == ''12d687'' OK
[3071] Test Hex: ''%00.9x'' == ''12d687'' OK
[3072] Test Hex: ''%00.20x'' == ''12d687'' OK
[3073] Test Hex: ''%03.x'' == ''12d687'' OK
[3074] Test Hex: ''%03.0x'' == ''12d687'' OK
[3075] Test Hex: ''%03.3x'' == ''12d687'' OK
[3076] Test Hex: ''%03.6x'' == ''12d687'' OK
[3077] Test Hex: ''%03.9x'' == ''12d687'' OK
[3078] Test Hex: ''%03.20x'' == ''12d687'' OK
[3079] Test Hex: ''%06.x'' == ''12d687'' OK
[3080] Test Hex: ''%06.0x'' == ''12d687'' OK
[3081] Test Hex: ''%06.3x'' == ''12d687'' OK
[3082] Test Hex: ''%06.6x'' == ''12d687'' OK
[3083] Test Hex: ''%06.9x'' == ''12d687'' OK
[3084] Test Hex: ''%06.20x'' == ''12d687'' OK
[3085] Test Hex: ''%09.x'' == ''00012d687'' OK
[3086] Test Hex: ''%09.0x'' == ''00012d687'' OK
[3087] Test Hex: ''%09.3x'' == ''00012d687'' OK
[3088] Test Hex: ''%09.6x'' == ''00012d687'' OK
[3089] Test Hex: ''%09.9x'' == ''00012d687'' OK
[3090] Test Hex: ''%09.20x'' == ''00012d687'' OK
[3091] Test Hex: ''%020.x'' == ''0000000000000012d687'' OK
[3092] Test Hex: ''%020.0x'' == ''0000000000000012d687'' OK
[3093] Test Hex: ''%020.3x'' == ''0000000000000012d687'' OK
[3094] Test Hex: ''%020.6x'' == ''0000000000000012d687'' OK
[3095] Test Hex: ''%020.9x'' == ''0000000000000012d687'' OK
[3096] Test Hex: ''%020.20x'' == ''0000000000000012d687'' OK
[3097] Test Hex: ''%-0.X'' == ''12D687'' OK
[3098] Test Hex: ''%-0.0X'' == ''12D687'' OK
[3099] Test Hex: ''%-0.3X'' == ''12D687'' OK
[3100] Test Hex: ''%-0.6X'' == ''12D687'' OK
[3101] Test Hex: ''%-0.9X'' == ''12D687'' OK
[3102] Test Hex: ''%-0.20X'' == ''12D687'' OK
[3103] Test Hex: ''%-3.X'' == ''12D687'' OK
[3104] Test Hex: ''%-3.0X'' == ''12D687'' OK
[3105] Test Hex: ''%-3.3X'' == ''12D687'' OK
[3106] Test Hex: ''%-3.6X'' == ''12D687'' OK
[3107] Test Hex: ''%-3.9X'' == ''12D687'' OK
[3108] Test Hex: ''%-3.20X'' == ''12D687'' OK
[3109] Test Hex: ''%-6.X'' == ''12D687'' OK
[3110] Test Hex: ''%-6.0X'' == ''12D687'' OK
[3111] Test Hex: ''%-6.3X'' == ''12D687'' OK
[3112] Test Hex: ''%-6.6X'' == ''12D687'' OK
[3113] Test Hex: ''%-6.9X'' == ''12D687'' OK
[3114] Test Hex: ''%-6.20X'' == ''12D687'' OK
[3115] Test Hex: ''%-9.X'' == ''12D687   '' OK
[3116] Test Hex: ''%-9.0X'' == ''12D687   '' OK
[3117] Test Hex: ''%-9.3X'' == ''12D687   '' OK
[3118] Test Hex: ''%-9.6X'' == ''12D687   '' OK
[3119] Test Hex: ''%-9.9X'' == ''12D687   '' OK
[3120] Test Hex: ''%-9.20X'' == ''12D687   '' OK
[3121] Test Hex: ''%-20.X'' == ''12D687              '' OK
[3122] Test Hex: ''%-20.0X'' == ''12D687              '' OK
[3123] Test Hex: ''%-20.3X'' == ''12D687              '' OK
[3124] Test Hex: ''%-20.6X'' == ''12D687              '' OK
[3125] Test Hex: ''%-20.9X'' == ''12D687              '' OK
[3126] Test Hex: ''%-20.20X'' == ''12D687              '' OK
[3127] Test Hex: ''%-0.x'' == ''12d687'' OK
[3128] Test Hex: ''%-0.0x'' == ''12d687'' OK
[3129] Test Hex: ''%-0.3x'' == ''12d687'' OK
[3130] Test Hex: ''%-0.6x'' == ''12d687'' OK
[3131] Test Hex: ''%-0.9x'' == ''12d687'' OK
[3132] Test Hex: ''%-0.20x'' == ''12d687'' OK
[3133] Test Hex: ''%-3.x'' == ''12d687'' OK
[3134] Test Hex: ''%-3.0x'' == ''12d687'' OK
[3135] Test Hex: ''%-3.3x'' == ''12d687'' OK
[3136] Test Hex: ''%-3.6x'' == ''12d687'' OK
[3137] Test Hex: ''%-3.9x'' == ''12d687'' OK
[3138] Test Hex: ''%-3.20x'' == ''12d687'' OK
[3139] Test Hex: ''%-6.x'' == ''12d687'' OK
[3140] Test Hex: ''%-6.0x'' == ''12d687'' OK
[3141] Test Hex: ''%-6.3x'' == ''12d687'' OK
[3142] Test Hex: ''%-6.6x'' == ''12d687'' OK
[3143] Test Hex: ''%-6.9x'' == ''12d687'' OK
[3144] Test Hex: ''%-6.20x'' == ''12d687'' OK
[3145] Test Hex: ''%-9.x'' == ''12d687   '' OK
[3146] Test Hex: ''%-9.0x'' == ''12d687   '' OK
[3147] Test Hex: ''%-9.3x'' == ''12d687   '' OK
[3148] Test Hex: ''%-9.6x'' == ''12d687   '' OK
[3149] Test Hex: ''%-9.9x'' == ''12d687   '' OK
[3150] Test Hex: ''%-9.20x'' == ''12d687   '' OK
[3151] Test Hex: ''%-20.x'' == ''12d687              '' OK
[3152] Test Hex: ''%-20.0x'' == ''12d687              '' OK
[3153] Test Hex: ''%-20.3x'' == ''12d687              '' OK
[3154] Test Hex: ''%-20.6x'' == ''12d687              '' OK
[3155] Test Hex: ''%-20.9x'' == ''12d687              '' OK
[3156] Test Hex: ''%-20.20x'' == ''12d687              '' OK
[3157] Test Hex: ''%-00.X'' == ''12D687'' OK
[3158] Test Hex: ''%-00.0X'' == ''12D687'' OK
[3159] Test Hex: ''%-00.3X'' == ''12D687'' OK
[3160] Test Hex: ''%-00.6X'' == ''12D687'' OK
[3161] Test Hex: ''%-00.9X'' == ''12D687'' OK
[3162] Test Hex: ''%-00.20X'' == ''12D687'' OK
[3163] Test Hex: ''%-03.X'' == ''12D687'' OK
[3164] Test Hex: ''%-03.0X'' == ''12D687'' OK
[3165] Test Hex: ''%-03.3X'' == ''12D687'' OK
[3166] Test Hex: ''%-03.6X'' == ''12D687'' OK
[3167] Test Hex: ''%-03.9X'' == ''12D687'' OK
[3168] Test Hex: ''%-03.20X'' == ''12D687'' OK
[3169] Test Hex: ''%-06.X'' == ''12D687'' OK
[3170] Test Hex: ''%-06.0X'' == ''12D687'' OK
[3171] Test Hex: ''%-06.3X'' == ''12D687'' OK
[3172] Test Hex: ''%-06.6X'' == ''12D687'' OK
[3173] Test Hex: ''%-06.9X'' == ''12D687'' OK
[3174] Test Hex: ''%-06.20X'' == ''12D687'' OK
[3175] Test Hex: ''%-09.X'' == ''12D687000'' OK
[3176] Test Hex: ''%-09.0X'' == ''12D687000'' OK
[3177] Test Hex: ''%-09.3X'' == ''12D687000'' OK
[3178] Test Hex: ''%-09.6X'' == ''12D687000'' OK
[3179] Test Hex: ''%-09.9X'' == ''12D687000'' OK
[3180] Test Hex: ''%-09.20X'' == ''12D687000'' OK
[3181] Test Hex: ''%-020.X'' == ''12D68700000000000000'' OK
[3182] Test Hex: ''%-020.0X'' == ''12D68700000000000000'' OK
[3183] Test Hex: ''%-020.3X'' == ''12D68700000000000000'' OK
[3184] Test Hex: ''%-020.6X'' == ''12D68700000000000000'' OK
[3185] Test Hex: ''%-020.9X'' == ''12D68700000000000000'' OK
[3186] Test Hex: ''%-020.20X'' == ''12D68700000000000000'' OK
[3187] Test Hex: ''%-00.x'' == ''12d687'' OK
[3188] Test Hex: ''%-00.0x'' == ''12d687'' OK
[3189] Test Hex: ''%-00.3x'' == ''12d687'' OK
[3190] Test Hex: ''%-00.6x'' == ''12d687'' OK
[3191] Test Hex: ''%-00.9x'' == ''12d687'' OK
[3192] Test Hex: ''%-00.20x'' == ''12d687'' OK
[3193] Test Hex: ''%-03.x'' == ''12d687'' OK
[3194] Test Hex: ''%-03.0x'' == ''12d687'' OK
[3195] Test Hex: ''%-03.3x'' == ''12d687'' OK
[3196] Test Hex: ''%-03.6x'' == ''12d687'' OK
[3197] Test Hex: ''%-03.9x'' == ''12d687'' OK
[3198] Test Hex: ''%-03.20x'' == ''12d687'' OK
[3199] Test Hex: ''%-06.x'' == ''12d687'' OK
[3200] Test Hex: ''%-06.0x'' == ''12d687'' OK
[3201] Test Hex: ''%-06.3x'' == ''12d687'' OK
[3202] Test Hex: ''%-06.6x'' == ''12d687'' OK
[3203] Test Hex: ''%-06.9x'' == ''12d687'' OK
[3204] Test Hex: ''%-06.20x'' == ''12d687'' OK
[3205] Test Hex: ''%-09.x'' == ''12d687000'' OK
[3206] Test Hex: ''%-09.0x'' == ''12d687000'' OK
[3207] Test Hex: ''%-09.3x'' == ''12d687000'' OK
[3208] Test Hex: ''%-09.6x'' == ''12d687000'' OK
[3209] Test Hex: ''%-09.9x'' == ''12d687000'' OK
[3210] Test Hex: ''%-09.20x'' == ''12d687000'' OK
[3211] Test Hex: ''%-020.x'' == ''12d68700000000000000'' OK
[3212] Test Hex: ''%-020.0x'' == ''12d68700000000000000'' OK
[3213] Test Hex: ''%-020.3x'' == ''12d68700000000000000'' OK
[3214] Test Hex: ''%-020.6x'' == ''12d68700000000000000'' OK
[3215] Test Hex: ''%-020.9x'' == ''12d68700000000000000'' OK
[3216] Test Hex: ''%-020.20x'' == ''12d68700000000000000'' OK

I plan to implement the use of "%lb", "%lX", "%lx" formatting for int64 in the next pull request, just like "%b", "%X", "%x".

Therefore, the test cases for int64 are also planned to be submitted in the next pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants